mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 10:53:14 +01:00
6 lines
110 B
D
6 lines
110 B
D
module bug51;
|
|
const ubyte[3] arr1 = 0;
|
|
const ubyte[3] arr2 = [0];
|
|
const ubyte[3] arr3 = [0:1];
|
|
void main() {}
|