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