digitalmars.D.bugs - Illegal operation: property syntax and argument defaults
- Andy Friesen (11/11) Jun 24 2004 The compiler crashes with an illegal operation when given this:
The compiler crashes with an illegal operation when given this:
class Test {
static Test test(int q=0) {
return null;
}
}
Test foo() {
return Test.test;
}
(it makes no difference whether Test.test is static or not)
-- andy
Jun 24 2004








Andy Friesen <andy ikagames.com>