view tangotests/e.d @ 132:1700239cab2e trunk

[svn r136] MAJOR UNSTABLE UPDATE!!! Initial commit after moving to Tango instead of Phobos. Lots of bugfixes... This build is not suitable for most things.
author lindquist
date Fri, 11 Jan 2008 17:57:40 +0100
parents
children 68a7dd38c03c
line wrap: on
line source

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

class MyClass
{
    this(int i = 4)
    {
        inner = this.new InnerClass;
    }

    class InnerClass : Object.Monitor
    {
        void lock() {}
        void unlock() {}
    }

    InnerClass inner;
}

void func()
{
    scope c = new MyClass(42);
}