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