summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/c/00081-else-if.c
diff options
context:
space:
mode:
Diffstat (limited to 'debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/c/00081-else-if.c')
-rw-r--r--debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/c/00081-else-if.c28
1 files changed, 28 insertions, 0 deletions
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/c/00081-else-if.c b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/c/00081-else-if.c
new file mode 100644
index 00000000..ff5f5b21
--- /dev/null
+++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/c/00081-else-if.c
@@ -0,0 +1,28 @@
+int test (int A, int B) {
+
+ int C;
+
+ if (A == 0)
+ if (B == 0)
+ C = 1;
+ else if (B == 1)
+ C = 2;
+ else
+ C = 3;
+ else if (A == 1)
+ if (B == 0)
+ C = 4;
+ else if (B == 1)
+ C = 5;
+ else
+ C = 6;
+ else if (B == 0)
+ C = 7;
+ else if (B == 1)
+ C = 8;
+ else
+ C = 9;
+
+ return C;
+}
+