view test/virtcall.d @ 13:3d1d98329fa7 trunk

[svn r17] changed the llvmdc.conf to use dmd.conf style values. hardcoding my home dir is obviously not the best idea...
author lindquist
date Tue, 02 Oct 2007 21:28:57 +0200
parents c53b6e3fe49a
children 8b0e809563df
line wrap: on
line source

module virtcall;

class C
{
    override char[] toString()
    {
        return "overridden";
    }
}

void main()
{
    C c = new C;
    auto s = c.toString();
}