view nocompile/cast_03.d @ 338:1f6cf5ccfbc9

1) updated rules to dmd-0.119 2) added __DSTRESS_ELINE__ tags
author thomask
date Mon, 21 Mar 2005 20:45:57 +0000
parents a33ad7189d21
children b8c0195059d9
line wrap: on
line source

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

// @author@	Walter <newshound@digitalmars.com>
// @date@	2004-08-16
// @uri@	news:cfpk7u$1qgs$1@digitaldaemon.com

// __DSTRESS_ELINE__ 27

module dstress.nocompile.cast_03;

interface MyInterface{
}

class MyClass : MyInterface {
}

int main(){
	MyClass c;
	c = new MyClass();
	
	MyInterface i;
	i = c;

	Object o;
	o = i;
	return 0;
}