module tangotests.debug12; interface I { int foo(); } class C : I { int i = 24; int foo() { return i; } } void main() { scope c = new C; I i = c; int* fail; *fail = 0; }