view run/c/classinfo_01_D.d @ 1320:daef239f37cf

sed'ed replacement of new:...http.d.puremagic.com/issues/ with http://d.puremagic.com/issues/show_bug.cgi?...
author thomask
date Sun, 31 Dec 2006 19:59:08 +0000
parents 415ee28b3d48
children
line wrap: on
line source

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

// @author@	Frank Benoit <benoit@tionex.de>
// @date@	2006-11-08
// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=489
// @desc@	[Issue 489] New: .classinfo not working with fqn

module dstress.run.c.classinfo_01_D;

class C{
}

C c;

int main(){
	c = new C();
	ClassInfo i = dstress.run.c.classinfo_01_D.c.classinfo;

	if(!i){
		assert(0);
	}

	return 0;
}