summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.76.0/tests/input/c/indent-assign.c
diff options
context:
space:
mode:
Diffstat (limited to 'debian/uncrustify-trinity/uncrustify-trinity-0.76.0/tests/input/c/indent-assign.c')
-rw-r--r--debian/uncrustify-trinity/uncrustify-trinity-0.76.0/tests/input/c/indent-assign.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.76.0/tests/input/c/indent-assign.c b/debian/uncrustify-trinity/uncrustify-trinity-0.76.0/tests/input/c/indent-assign.c
new file mode 100644
index 00000000..58ed9c52
--- /dev/null
+++ b/debian/uncrustify-trinity/uncrustify-trinity-0.76.0/tests/input/c/indent-assign.c
@@ -0,0 +1,13 @@
+void foo(void)
+{
+ int a;
+ junk(a = 3);
+}
+
+void f()
+{
+ int x = size_t(1.0) +
+ 2;
+ int y = (size_t(1.0) +
+ 5);
+}