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