aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/external/c-testsuite/tests/single-exec/00010.c
blob: d5bfbbffdc97f39b47257e653afa82b2dfc03754 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
int
main()
{
	start:
		goto next;
		return 1;
	success:
		return 0;
	next:
	foo:
		goto success;
		return 1;
}