view tests/mini/bug372.d @ 1641:00cd99bedf06

Add missing files for the new frontend spell checker
author Kelly Wilson <wilsonk cpsc.ucalgary.ca>
date Mon, 08 Mar 2010 17:41:36 -0700
parents 44b145be2ef5
children
line wrap: on
line source

class A {
    class B {
    }
}

class C : A {
    void test () {
        B foo = new B();
    }
}

int main () {
    return 0;
}