Files
ldc/test/bug29.d
Tomas Lindquist Olsen 5fee3fc8b7 [svn r56] Initial support for TypeInfo.
Enums not work.
Several other bugfixes.
2007-10-23 05:55:12 +02:00

16 lines
232 B
D

module bug29;
void main()
{
int[] arr16 = new int[4];
{
void[] arr = arr16;
{
printf("%lu\n", arr.length);
{
assert(arr.length == 16);
}
}
}
}