• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download

foo(void)1 static void foo(void)
2 {
3 	goto return;
4 }
5 
bar(void)6 void bar(void)
7 {
8 	goto neverland;
9 }
10 
11 /*
12  * check-name: goto-invalid
13  * check-command: test-linearize -Wno-decl $file
14  *
15  * check-error-ignore
16  * check-output-ignore
17  * check-output-excludes: END
18  */
19