view tests/mini/bug63.d @ 756:a58784e0f035

Merge wilsonk's x86-64 inline assembly.
author Christian Kamm <kamm incasoftware de>
date Sat, 08 Nov 2008 22:29:19 +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();
}