view tests/mini/bug372.d @ 1633:5c0cebff9be8

Improve array append performance. Actually use the appropriate runtime function, instead of just growing the array by one!
author Christian Kamm <kamm incasoftware de>
date Sun, 14 Feb 2010 10:11:05 +0100
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;
}