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

void bar(void)
{
	goto neverland;
}

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