summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/input/cpp/bug_485.cpp
blob: 4865da64d92af3875bcfda0691dac3fddba0c5b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
void Tst::test( Msg* message_p )
 {
 switch (message_p)
 {
 case A:
 {
 const table* entry2 = findMsg( message_p );
 table* entry3 = findMsg( message_p );
 }
 break;

 case B:
 const table* entry2 = findMsg( message_p );
 table* entry3 = findMsg( message_p );
 break;

 default:
 break;
 }
 }