summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.73.0/tests/input/cs/bug_600.cs
diff options
context:
space:
mode:
Diffstat (limited to 'debian/uncrustify-trinity/uncrustify-trinity-0.73.0/tests/input/cs/bug_600.cs')
-rw-r--r--debian/uncrustify-trinity/uncrustify-trinity-0.73.0/tests/input/cs/bug_600.cs14
1 files changed, 0 insertions, 14 deletions
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.73.0/tests/input/cs/bug_600.cs b/debian/uncrustify-trinity/uncrustify-trinity-0.73.0/tests/input/cs/bug_600.cs
deleted file mode 100644
index 3d93d861..00000000
--- a/debian/uncrustify-trinity/uncrustify-trinity-0.73.0/tests/input/cs/bug_600.cs
+++ /dev/null
@@ -1,14 +0,0 @@
-Vector2 ? a;
-Vector2 b;
-
-void G()
-{
- int ? x = true ? null : (int ?)2;
- var q = x == null ? y : z;
- var q2 = x == q ? y : z;
- var q3 = x == null ? (y = new Y()) : z;
- var q4 = x == q ? (y = new Y()) : z;
-
- var q5 = x == null ? y = new Y() : z;
- var q6 = x == q ? y = new Y() : z;
-}