xref: /illumos-gate/usr/src/tools/smatch/src/validation/label-expr.c (revision b30d193948be5a7794d7ae3ba0ed9c2f72c88e0f)
1 int 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