summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/cpp/33065-Issue_3316.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/cpp/33065-Issue_3316.cpp')
-rw-r--r--debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/cpp/33065-Issue_3316.cpp15
1 files changed, 0 insertions, 15 deletions
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/cpp/33065-Issue_3316.cpp b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/cpp/33065-Issue_3316.cpp
deleted file mode 100644
index 91ec82f0..00000000
--- a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/cpp/33065-Issue_3316.cpp
+++ /dev/null
@@ -1,15 +0,0 @@
-#include <iostream>
-
-bool
-foo()
-{
- const int i = 3;
-
- if ( (i == 2) || (i == 3) || (i == 5) ) {
- std::cerr << "Very small prime!\n";
- }
-
- const auto isSmallPrime = (i == 2) || (i == 3) || (i == 5) || (i == 7) || (i == 11);
-
- return isSmallPrime || (i == 13) || (i == 17) || (i == 19);
-}