xref: /illumos-gate/usr/src/tools/smatch/src/validation/label-scope.c (revision f52943a93040563107b95bccb9db87d9971ef47d)
1 static int f(int n)
2 {
3 	__label__ n;
4 n:	return n;
5 }
6 static int g(int n)
7 {
8 n:	return n;
9 }
10 /*
11  * check-name: __label__ scope
12  */
13