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