1int t(void)
2{
3	goto inside;
4	return 1 ? 2 : ({
5inside:
6			return 3;
7			4;
8		    });
9}
10
11void f(int x, int y)
12{
13	1 ? x : ({
14a:
15		 y;
16	});
17	goto a;
18}
19
20/*
21 * check-name: goto-stmt-expr-conditional
22 * check-command: test-linearize -Wno-decl $file
23 *
24 * check-error-ignore
25 * check-output-ignore
26 * check-output-excludes: END
27 */
28