aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/validation/linear/goto-invalid.c
blob: 860b32a41ef9640e2bfde9f1aaa5ba188def994d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
static void foo(void)
{
	goto return;
}

void bar(void)
{
	goto neverland;
}

/*
 * check-name: goto-invalid
 * check-command: test-linearize -Wno-decl $file
 *
 * check-error-ignore
 * check-output-ignore
 * check-output-excludes: END
 */