digitalmars.D.bugs - Unobvious error message
- Vladimir (15/15) Apr 22 2005 class A {
class A {
this() {}
void func() { this(); }
}
test.d:3: class constructor call must be in a constructor
and more serious:
class A {
this() {}
void opCall() {}
void func() {
this(); // this should call opCall, shouldn't it ?
}
}
--
Vladimir
Apr 22 2005








Vladimir <kv11111 mail.ru>