view tests/mini/nested5.d @ 650:aa6a0b7968f7

Added test case for bug #100 Removed dubious check for not emitting static private global in other modules without access. This should be handled properly somewhere else, it's causing unresolved global errors for stuff that should work (in MiniD)
author Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
date Sun, 05 Oct 2008 17:28:15 +0200
parents 45a67b6f1310
children
line wrap: on
line source

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

void main()
{
    int i = 42;

    printf("Hello world %d\n", i++);

    class C
    {
        void func()
        {
            printf("Hello nested world %d\n", i++);
            //i++;
        }
    }

    auto c = new C;
    c.func();
    printf("i = %d\n", i);
    assert(i == 44);
}