summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/tests/expected/cpp/34206-for_loop_head.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'debian/uncrustify-trinity/uncrustify-trinity-0.72.0/tests/expected/cpp/34206-for_loop_head.cpp')
-rw-r--r--debian/uncrustify-trinity/uncrustify-trinity-0.72.0/tests/expected/cpp/34206-for_loop_head.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/tests/expected/cpp/34206-for_loop_head.cpp b/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/tests/expected/cpp/34206-for_loop_head.cpp
new file mode 100644
index 00000000..6cea550d
--- /dev/null
+++ b/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/tests/expected/cpp/34206-for_loop_head.cpp
@@ -0,0 +1,10 @@
+for(int i = 1,
+ j = 2,
+ k = 3,
+ ; (i != 1
+ && j != 2
+ && k != 2)
+ ; i++, j++, k++ )
+{
+}
+