Comment #0 by verylonglogin.reg — 2012-08-09T03:05:01Z
---
interface I { }
class A: I { string s = "A"; this() {} }
void main() {
auto a = new A;
a.s = "asd";
I i = a;
destroy(i);
assert(a.s == "A"); // fails
}
---
Comment #1 by verylonglogin.reg — 2012-08-09T03:10:48Z