view tangotests/i.d @ 199:ba47ac346ddd trunk

[svn r215] fix for empty class vtbl
author ChristianK
date Mon, 12 May 2008 21:08:33 +0200
parents 68a7dd38c03c
children
line wrap: on
line source

interface IN
{
    void func();
}
abstract class AC
{
    abstract void func();
    long ll;
}
class C : AC
{
    void func()
    {
    }
}

void main()
{
    scope c = new C;
}