aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/validation/label-scope.c
blob: 7af3d916c347ca78db02482ba97c7caae2ea3e5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
static int f(int n)
{
	__label__ n;
n:	return n;
}
static int g(int n)
{
n:	return n;
}
/*
 * check-name: __label__ scope
 */