diff options
Diffstat (limited to 'debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/input/oc/3813.m')
-rw-r--r-- | debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/input/oc/3813.m | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/input/oc/3813.m b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/input/oc/3813.m new file mode 100644 index 00000000..37e9239f --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/input/oc/3813.m @@ -0,0 +1,20 @@ +- (void)func { + func2(^{ + switch (type) { + case one: + break; + default: + break; + } + }); +} + +- (void)func { + func2(^{ + if(YES) { + switch (type) { + case one: break; + } + } + }); +} |