view test/interface2.d @ 273:25fa34e899e9 trunk

[svn r294] Fixed some more of the old tests.
author lindquist
date Wed, 18 Jun 2008 23:29:14 +0200
parents 44a95ac7368a
children
line wrap: on
line source

module interface2;

extern(C) int printf(char*,...);

interface A
{
    void a();
}

interface B
{
    void b();
}

class C : A,B
{
    int i = 0;
    override void a()
    {
        printf("hello from C.a\n");
    }
    override void b()
    {
        printf("hello from C.b\n");
    }
}

void main()
{
    scope c = new C;
    {c.a();
    c.b();}
    {A a = c;
    a.a();}
    {B b = c;
    b.b();}
}