d: Merge upstream dmd, druntime 4c18eed967, phobos d945686a4.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / test19112.d
blobf5bd4035eeb72f2aa5555e326697578a5fbf4641
1 /* TEST_OUTPUT:
2 ---
3 fail_compilation/test19112.d(13): Error: cannot implicitly convert expression `[123, 456]` of type `int[]` to `int[1]`
4 fail_compilation/test19112.d(15): Error: cannot implicitly convert expression `a` of type `int[]` to `int[1]`
5 ---
6 */
8 // https://issues.dlang.org/show_bug.cgi?id=19112
10 void main()
12 int[int[1]] aa;
13 int* p = [123, 456] in aa;
14 int[] a;
15 p = a in aa;