view test/bug56.d @ 321:571959608194 trunk

[svn r342] Fix DMD bug 2206. Implement mixin declarations in LLVMDC.
author ChristianK
date Wed, 09 Jul 2008 17:01:08 +0200
parents 70d6113eeb8c
children
line wrap: on
line source

module bug56;

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