view test/bug56.d @ 289:17d3b3236334 trunk

[svn r310] Fixed a problem with incomplete types and templates in typeinfo code.
author lindquist
date Sat, 21 Jun 2008 16:22:29 +0200
parents 70d6113eeb8c
children
line wrap: on
line source

module bug56;

void main()
{
    int[] a;
    a = [1,2,3];
    {int[] b = [4,5,6];}
}