aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/validation/linear/goto-and-expr-stmt0.c
diff options
context:
space:
mode:
Diffstat (limited to 'validation/linear/goto-and-expr-stmt0.c')
-rw-r--r--validation/linear/goto-and-expr-stmt0.c28
1 files changed, 28 insertions, 0 deletions
diff --git a/validation/linear/goto-and-expr-stmt0.c b/validation/linear/goto-and-expr-stmt0.c
new file mode 100644
index 00000000..54881353
--- /dev/null
+++ b/validation/linear/goto-and-expr-stmt0.c
@@ -0,0 +1,28 @@
+int t(void)
+{
+ goto inside;
+ return 1 ? 2 : ({
+inside:
+ return 3;
+ 4;
+ });
+}
+
+void f(int x, int y)
+{
+ 1 ? x : ({
+a:
+ y;
+ });
+ goto a;
+}
+
+/*
+ * check-name: goto-and-expr-stmt0
+ * check-command: test-linearize -Wno-decl $file
+ * check-known-to-fail
+ *
+ * check-output-ignore
+ * check-output-excludes: END
+ * check-error-ignore
+ */