xref: /illumos-gate/usr/src/tools/smatch/src/validation/constexpr-labelref.c (revision 8c0b080c8ed055a259d8cd26b9f005211c6a9753)
1 static void a(void)
2 {
3 label1:
4 	;
5 	static void *b = &&label1;
6 }
7 
8 /*
9  * check-name: constexprness label reference
10  * check-command: sparse -Wconstexpr-not-const $file
11  *
12  * check-error-start
13  * check-error-end
14  */
15