mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
12 lines
252 B
D
12 lines
252 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/diag13215.d(11): Error: cannot implicitly convert expression `[1, 2, 3]` of type `int[]` to `immutable(uint[2])[]`
|
|
---
|
|
*/
|
|
|
|
enum uint N = 10;
|
|
immutable uint[2][3] arr2;
|
|
shared static this() {
|
|
arr2 = [1, 2, 3];
|
|
}
|