f(int n)1 static int f(int n)
2 {
3 	__label__ n;
4 n:	return n;
5 }
g(int n)6 static int g(int n)
7 {
8 n:	return n;
9 }
10 /*
11  * check-name: __label__ scope
12  */
13