summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/c/00312-comment_conversion_endif.c
diff options
context:
space:
mode:
Diffstat (limited to 'debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/c/00312-comment_conversion_endif.c')
-rw-r--r--debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/c/00312-comment_conversion_endif.c24
1 files changed, 24 insertions, 0 deletions
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/c/00312-comment_conversion_endif.c b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/c/00312-comment_conversion_endif.c
new file mode 100644
index 00000000..353946fb
--- /dev/null
+++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/c/00312-comment_conversion_endif.c
@@ -0,0 +1,24 @@
+#ifndef DOXYGEN_SHOULD_SKIP_THIS // TEST1
+
+void foo()
+{
+ int i = 0;
+}
+
+#elif defined(sgi) && sgi // TEST2
+
+void bar()
+{
+ int j = 0;
+}
+
+#else // TEST3
+
+void foobar()
+{
+ int j = 0;
+}
+
+#endif // END TEST
+
+void main();