view nocompile/a/as_01_C.d @ 832:602e7b841889

added further C# like code
author thomask
date Wed, 15 Feb 2006 15:25:52 +0000
parents
children
line wrap: on
line source

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

// Porting: C#

// __DSTRESS_ELINE__ 16

module dstress.nocompile.a.as_01_C;

struct C{
}

C test(Object o){
	C c;
	c = o as C;
	return c;
}