diff options
Diffstat (limited to 'debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/c/00082-else-if.c')
-rw-r--r-- | debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/c/00082-else-if.c | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/c/00082-else-if.c b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/c/00082-else-if.c deleted file mode 100644 index 06cc37f2..00000000 --- a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/c/00082-else-if.c +++ /dev/null @@ -1,29 +0,0 @@ -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; -} - |