diff options
Diffstat (limited to 'debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/expected/cpp/30052-try-catch-nl.cpp')
-rw-r--r-- | debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/expected/cpp/30052-try-catch-nl.cpp | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/expected/cpp/30052-try-catch-nl.cpp b/debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/expected/cpp/30052-try-catch-nl.cpp deleted file mode 100644 index 410a735e..00000000 --- a/debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/expected/cpp/30052-try-catch-nl.cpp +++ /dev/null @@ -1,24 +0,0 @@ -int foo() -{ - try - { - foo(bar); - } - catch (int *e) - { - return 0; - } - - if (false) - try - { - throw int(); - } - catch(...) - { - } - - if (a) { return 1; } else { return 0; } - return 1; -} - |