aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/validation/constexpr-labelref.c
blob: 93dc5ccc5e5d9ebec2da607cb149939f91e3c079 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
static void a(void)
{
label1:
	;
	static void *b = &&label1;
}

/*
 * check-name: constexprness label reference
 * check-command: sparse -Wconstexpr-not-const $file
 *
 * check-error-start
 * check-error-end
 */