summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.73.0/tests/input/cpp/bug_i_359.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'debian/uncrustify-trinity/uncrustify-trinity-0.73.0/tests/input/cpp/bug_i_359.cpp')
-rw-r--r--debian/uncrustify-trinity/uncrustify-trinity-0.73.0/tests/input/cpp/bug_i_359.cpp14
1 files changed, 0 insertions, 14 deletions
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.73.0/tests/input/cpp/bug_i_359.cpp b/debian/uncrustify-trinity/uncrustify-trinity-0.73.0/tests/input/cpp/bug_i_359.cpp
deleted file mode 100644
index 294e3afb..00000000
--- a/debian/uncrustify-trinity/uncrustify-trinity-0.73.0/tests/input/cpp/bug_i_359.cpp
+++ /dev/null
@@ -1,14 +0,0 @@
-int main()
-{
- int foo = 42;
- switch (foo) {
- case 1:
- std::cout << "1" << std::endl;
- break;
- case 2:
- std::cout << "2" << std::endl;
- break;
- default:
- std::cout << "Neither 1 nor 2." << std::endl;
- }
-}