summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.76.0/tests/input/oc/3813.m
blob: 37e9239f990d0d4d16bda651f9d752ba29a2e784 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
- (void)func {
  func2(^{
    switch (type) {
      case one:
        break;
      default:
        break;
    }
  });
}

- (void)func {
  func2(^{
    if(YES) {
      switch (type) {
        case one: break;
      }
    }
  });
}