mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-13 11:23:14 +01:00
21 lines
178 B
D
21 lines
178 B
D
interface IN
|
|
{
|
|
void func();
|
|
}
|
|
abstract class AC
|
|
{
|
|
abstract void func();
|
|
long ll;
|
|
}
|
|
class C : AC
|
|
{
|
|
void func()
|
|
{
|
|
}
|
|
}
|
|
|
|
void main()
|
|
{
|
|
scope c = new C;
|
|
}
|