aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/external/c-testsuite/tests/single-exec/00090.c
blob: e71a5ad6984b5e42c5bc92fe7e9effb40515a394 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
int a[3] = {0, 1, 2};

int
main()
{
	if (a[0] != 0)
		return 1;
	if (a[1] != 1)
		return 2;
	if (a[2] != 2)
		return 3;
	
	return 0;
}