diff options
Diffstat (limited to 'debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/expected/c/00060-braces-2.c')
-rw-r--r-- | debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/expected/c/00060-braces-2.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/expected/c/00060-braces-2.c b/debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/expected/c/00060-braces-2.c deleted file mode 100644 index 38447f86..00000000 --- a/debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/expected/c/00060-braces-2.c +++ /dev/null @@ -1,16 +0,0 @@ -while (a >= 0) -{ - if (b) - { - for (j = 0; j < 10; j++) - { - if (j == b) - { - return; - } - a++; - } - } - b--; -} - |