• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download

t(void)1 int t(void)
2 {
3 	goto inside;
4 	return 1 ? 2 : ({
5 inside:
6 			return 3;
7 			4;
8 		    });
9 }
10 
f(int x,int y)11 void f(int x, int y)
12 {
13 	1 ? x : ({
14 a:
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