xref: /illumos-gate/usr/src/tools/smatch/src/validation/label-scope.c (revision 332e84f52cdee3d0232bd5ac5306c42177959c96)
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