1 int foo(void);
foo(void)2 int foo(void)
3 {
4 	int r;
5 
6 	r = ({ label: 1; });
7 	return r;
8 }
9 
10 /*
11  * check-name: label-expr
12  * check-command: test-linearize $file
13  * check-output-ignore
14  *
15  * check-output-excludes: ret\\.32\$
16  * check-output-contains: ret\\.32 *\\$1
17  */
18