view nocompile/cast_10.d @ 1535:20d8ee6523e1

updated to DMD-1.013
author thomask
date Mon, 07 May 2007 05:19:57 +0000
parents d3a3e0c251d8
children
line wrap: on
line source

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

// @author@	Jarrett Billingsley <kb3ctd2@yahoo.com>
// @date@	2005-01-09
// @uri@	news:crshla$2io3$1@digitaldaemon.com
// @uri@	http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=2659

// __DSTESS_ELINE__  25

module dstress.nocompile.cast_10;

class Parent{
}

class Child : Parent {
}

void test(ref Parent p){
}

int main(){
	Child c = new Child();
	test(c);
	return 0;
}