summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/input/c/Issue_3556.c
diff options
context:
space:
mode:
Diffstat (limited to 'debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/input/c/Issue_3556.c')
-rw-r--r--debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/input/c/Issue_3556.c33
1 files changed, 33 insertions, 0 deletions
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/input/c/Issue_3556.c b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/input/c/Issue_3556.c
new file mode 100644
index 00000000..423e07f0
--- /dev/null
+++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/input/c/Issue_3556.c
@@ -0,0 +1,33 @@
+int main(void)
+{
+ int a
+ = -1;
+ int b
+ = 0;
+ int c
+ = 1;
+ a
+ = -1;
+ b
+ = 0;
+ c
+ = 1;
+ if (a
+ = -1)
+ {
+ return a
+ = -1;
+ }
+ if (b
+ = 0)
+ {
+ return b
+ = 0;
+ }
+ if (c
+ = 1)
+ {
+ return c
+ = 1;
+ }
+}