view tangotests/constructors.d @ 160:b77664331d06 trunk

[svn r176] Fixed a bug with class constructors.
author lindquist
date Sun, 04 May 2008 04:35:27 +0200
parents
children
line wrap: on
line source

import tango.io.Console;

class C
{
    this()
    {
        Cout("C()").newline;
    }
    this(char[] str)
    {
        Cout("C(")(str)(")").newline;
    }
}

class D : C
{
    this()
    {
        super("D");
        Cout("D()").newline;
    }
}

void main()
{
    auto c1 = new C();
    auto c2 = new C("C");
    auto d = new D();
}