view run/t/typeid_86_A.d @ 1489:b8c0195059d9

changed nntp: URLs to http: URLs
author thomask
date Mon, 09 Apr 2007 13:47:01 +0000
parents 785c8eaa48b4
children
line wrap: on
line source

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

// @author@	Burton Radons <burton-radons@smocky.com>
// @date@	2005-05-08
// @uri@	http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=3924

module dstress.run.t.typeid_86_A;

int main(){
	struct A{
	}

	struct B{
	}

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