foo(void)1 int foo(void)
2 {
3 	int a[2][3] = {{0, 1, 2},{3, 4, 5}};
4 	return a[1][2];
5 }
6 
7 /*
8  * check-name: constant-init-nested-array
9  * check-command: test-linearize -Wno-decl -fdump-ir $file
10  * check-known-to-fail
11  *
12  * check-output-ignore
13  * check-output-contains: phisrc\\..*\\$5
14  * check-output-excludes: load\\.
15  */
16