summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/tests/expected/c/09604-indent_ternary-2.c
diff options
context:
space:
mode:
Diffstat (limited to 'debian/uncrustify-trinity/uncrustify-trinity-0.72.0/tests/expected/c/09604-indent_ternary-2.c')
-rw-r--r--debian/uncrustify-trinity/uncrustify-trinity-0.72.0/tests/expected/c/09604-indent_ternary-2.c34
1 files changed, 0 insertions, 34 deletions
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/tests/expected/c/09604-indent_ternary-2.c b/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/tests/expected/c/09604-indent_ternary-2.c
deleted file mode 100644
index e6d3576c..00000000
--- a/debian/uncrustify-trinity/uncrustify-trinity-0.72.0/tests/expected/c/09604-indent_ternary-2.c
+++ /dev/null
@@ -1,34 +0,0 @@
-void foo(void)
-{
- int a = x ? y
- : z,
- b = x ? (y)
- : (z),
- c = x ? *y
- : *z,
- d = x ? &y
- : &z;
-
-
- if (x ? y
- : z)
- {
- baz;
- }
- if (x ? (y)
- : (z))
- {
- baz;
- }
- if (x ? *y
- : *z)
- {
- baz;
- }
- if (x ? &y
- : &z)
- {
- baz;
- }
-}
-