mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-13 19:33:13 +01:00
Basically it tries to do the following in order: Resolve types, Declare symbols, Create constant initializers, Apply initializers, Generate functions bodies. ClassInfo is now has the most useful(biased?) members working. Probably other stuf...
8 lines
111 B
D
8 lines
111 B
D
module bug51;
|
|
const ubyte[3] arr1 = 0;
|
|
const ubyte[3] arr2 = [0];
|
|
const ubyte[3] arr3 = [1:1];
|
|
void main()
|
|
{
|
|
}
|