view run/overload_17.d @ 1619:bebc7472a832

Fix #7.
author Christian Kamm <kamm incasoftware de>
date Sat, 07 Nov 2009 18:55:30 +0100
parents d3a3e0c251d8
children
line wrap: on
line source

// $HeadURL$
// $Date$
// $Author$

// @author@	Stewart Gordon <smjg_1998@yahoo.com>
// @date@	2005-02-11
// @uri@	news:cui1u9$1kl1$1@digitaldaemon.com
// @uri@	http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=2943

module dstress.run.overload_17;

class Parent {
	Parent check(){
		return new Parent;
	}
}

class Sister : Parent {
	Brother check(){
    		return new Brother;
	}
}

class Brother : Parent {
}

int main(){
	Parent p = (new Sister()).check();
	return 0;
}