view tests/mini/bug63.d @ 1122:c614ef596a20

Fix imports copying for out-of-source build.
author Christian Kamm <kamm incasoftware de>
date Sun, 15 Mar 2009 23:04:58 +0100
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();
}