summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/cpp/30932-indent_var_def_cont.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/cpp/30932-indent_var_def_cont.cpp')
-rw-r--r--debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/cpp/30932-indent_var_def_cont.cpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/cpp/30932-indent_var_def_cont.cpp b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/cpp/30932-indent_var_def_cont.cpp
new file mode 100644
index 00000000..70b7304e
--- /dev/null
+++ b/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/cpp/30932-indent_var_def_cont.cpp
@@ -0,0 +1,16 @@
+int
+ a, b, c;
+
+int d,
+ e, f;
+
+void bar(void)
+{
+ struct foobar
+ a = { 'x', 0 };
+ struct foobar
+ b = { 'y', 2 },
+ c = { 'z', 4 };
+ struct foobar d = { 'y', 2 },
+ e = { 'z', 4 };
+}