view tests/mini/scope1.d @ 640:c2a342b5d8e5

Made Fibers work with LLVMDC on x86 Posix.
author Christian Kamm <kamm incasoftware de>
date Fri, 03 Oct 2008 00:42:17 +0200
parents 1bb99290e03a
children
line wrap: on
line source

module scope1;
extern(C) int printf(char*, ...);
void main()
{
    printf("1\n");
    {
        scope(exit) printf("2\n");
    }
    printf("3\n");
}