view tests/mini/bug63.d @ 590:1ecb43102d12

Allow VarDecl inside AttributeDecl inside DeclExp. Fixes run/e/extern_10_D
author Christian Kamm <kamm incasoftware de>
date Fri, 12 Sep 2008 13:11:32 +0200
parents 1bb99290e03a
children
line wrap: on
line source

module bug63;
extern(C) int printf(char*, ...);

void main()
{
    static void notnested()
    {
        printf("hello world\n");
    }
    notnested();
}