mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 19:03:13 +01:00
25 lines
218 B
D
25 lines
218 B
D
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;
|
|
}
|