February 10, 2004 [DMD crash] using super in a nested function | ||||
---|---|---|---|---|
| ||||
if you use 'super' in a nested function , DMD will crash. I tested in WindowsXP. ------------------------------------------------------ class Foo { void print() {printf("Foo\n");} } class Bar : Foo { void test() { void printFoo() { super.print(); // DMD crashes here } } } ------------------------------------------------------ yaneurao. |
Copyright © 1999-2021 by the D Language Foundation