aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/external/c-testsuite/tests/single-exec/00015.c
blob: 829f2e4acf4ad38239deeb225041d0a55654879c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
int
main()
{
	int arr[2];

	arr[0] = 1;
	arr[1] = 2;

	return arr[0] + arr[1] - 3;
}