xref: /illumos-gate/usr/src/tools/smatch/src/validation/goto-reserved.c (revision a28480febf31f0e61debac062a55216a98a05a92)
1 static void foo(void)
2 {
3 	goto return;
4 }
5 
6 /*
7  * check-name: goto-reserved
8  *
9  * check-error-start
10 goto-reserved.c:3:14: error: Trying to use reserved word 'return' as identifier
11  * check-error-end
12  */
13