diff options
Diffstat (limited to 'debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/input/c/Issue_3480.c')
-rw-r--r-- | debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/input/c/Issue_3480.c | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/input/c/Issue_3480.c b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/input/c/Issue_3480.c deleted file mode 100644 index 6a25879a..00000000 --- a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/input/c/Issue_3480.c +++ /dev/null @@ -1,26 +0,0 @@ -int a; -int b; -int c; - -int main() -{ - if (a - << b) - { - return 1; - } - - if ( a - >> b ) - { - return 2; - } - - c = a - << b; - - c = a - >> b; - - return 0; -} |