diff options
Diffstat (limited to 'debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/cpp/30075-goto.cpp')
-rw-r--r-- | debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/cpp/30075-goto.cpp | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/cpp/30075-goto.cpp b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/cpp/30075-goto.cpp deleted file mode 100644 index 4cccfe2c..00000000 --- a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/cpp/30075-goto.cpp +++ /dev/null @@ -1,11 +0,0 @@ -#define x struct z
-#define max(a, b) ((a) > (b) ? (a) : (b))
-
-void f()
-{
- goto p;
-p:
- goto q;
-q:
- goto p;
-}
|