view tests/sema/class_1.d @ 209:42e663451371

Renamed some of the actions. Declarations now have it's own action.
author Anders Johnsen <skabet@gmail.com>
date Tue, 12 Aug 2008 19:05:17 +0200
parents 7982eb63c0eb
children
line wrap: on
line source


class A
{
    this()
    {
    }

    int foo()
    {
        return 1;
    }

    int boo()
    {
        return 0;
    }
}

class B : A
{
    this()
    {
    }

    int foo()
    {
        return 0;
    }
}

int main()
{
    B a = new B();
    return a.foo() + a.boo();
}