summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.0/tests/input/cpp/sp_before_case_colon.cpp
blob: 0c534fe0039e0602502465b70753241b8fba9248 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
int foo(abc_t d)
{
  switch (d) 
  {
    case A:
      return 0;
    case B:
      return 1;
    case C:
      return 2;
  }
}