mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 10:53:14 +01:00
17 lines
266 B
D
17 lines
266 B
D
module bug29;
|
|
extern(C) int printf(char*, ...);
|
|
|
|
void main()
|
|
{
|
|
int[] arr16 = new int[4];
|
|
{
|
|
void[] arr = arr16;
|
|
{
|
|
printf("%lu\n", arr.length);
|
|
{
|
|
assert(arr.length == 16);
|
|
}
|
|
}
|
|
}
|
|
}
|