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

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

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

// @author@	Chris Miller <chris@dprogramming.com>
// @date@	2006-02-20
// @uri@	news:op.s5anrdhxpo9bzi@moe

module dstress.run.t.typeid_88_C;

int main(){
	if(typeid(int*) != typeid(short*)){
		return 0;
	}
	assert(0);
}