view run/opCast_01.d @ 1383:52c9e86b6486

@url@ -> @uri@
author thomask
date Sun, 04 Mar 2007 13:07:35 +0000
parents a33ad7189d21
children 6e4063f99377
line wrap: on
line source

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

// @author@	Carlos Santander B. <carlos8294@msn.com>
// @date@	2004-09-18
// @uri@	news:cihrpp$9gt$1@digitaldeamon.com
// @uri@	nntp://digitalmars.com/digitalmars.D.bugs/1865

module dstress.run.opCast_01;

class Parent{
	void test(int i){
	}
}

class Child : Parent{
	int opCast(){
		return 0;
	}
}

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