1char foo(void)
2{
3	static const char s[] = "abc?";
4	return s[3];
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\\..*\\$63
14 * check-output-pattern(0,1): load\\.
15 */
16