shithub: scc

ref: f08eafe178160c3dea617d0dd28c50b04b998c8d
dir: /cc1/tests/test057.c/

View raw version
/* See LICENSE file for copyright and license details. */

/*
name: TEST057
description: test of initialization of incomplete arrays
error:
output:
V1	I	#N3
G3	V2	"arr1	(
	#I2
	#I7
	#I5
	#I5
	#I1
	#I2
)
G4	V2	"arr2	(
	#I2
	#I7
	#I5
	#I5
	#I1
	#I2
)
G6	I	F	"main
{
\
	h	G3	'P	#P6	+P	#P4	+P	@I	G4	'P	#P6	+P	#P6	+P	@I	!I
}
*/

int arr1[][3] = {
                 { 2, 7, 5, },
                 { 5, 1, 2, },
};

int arr2[2][3] = {
	2, 7, 5,
	5, 1, 2
};

int
main(void)
{
	return !(arr1[1][2] == arr2[1][3]);
}