aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/validation/label-scope.c
blob: 0ffaaf4a4ccc81a1402abb0d3e4da9a65772b751 (plain)
1
2
3
4
5
6
7
8
9
static int f(int n)
{
	__label__ n;
n:	return n;
}

/*
 * check-name: __label__ scope
 */