view run/t/typeid_86_C.d @ 1126:785c8eaa48b4

various test case fixes
author thomask
date Wed, 06 Sep 2006 21:12:08 +0000
parents 37f34f030c21
children b8c0195059d9
line wrap: on
line source

// $HeadURL$
// $Date$
// $Auhtor$

// @author@	Burton Radons <burton-radons@smocky.com>
// @date@	2005-05-08
// @uri@	news:d5lotd$29j1$1@digitaldaemon.com

module dstress.run.t.typeid_86_C;

int main(){
	union A{
	}

	union B{
	}

	if(typeid(A) != typeid(B)){
		return 0;
	}
	assert(0);
}