diff options
Diffstat (limited to 'debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/expected/c/10022-Issue_3269.c')
-rw-r--r-- | debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/expected/c/10022-Issue_3269.c | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/expected/c/10022-Issue_3269.c b/debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/expected/c/10022-Issue_3269.c deleted file mode 100644 index 6baef61c..00000000 --- a/debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/expected/c/10022-Issue_3269.c +++ /dev/null @@ -1,17 +0,0 @@ -int main(void) -{ - int x = 0; - - while ( x < 5 ) - { - x++; - } - - do - { - x++; - } - while ( x < 5 ); - - return 0; -} |