foo(void)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