view run/t/typedef_11_I.d @ 1519:f71bd33bb278

updated to DMD-1.013
author thomask
date Fri, 27 Apr 2007 17:22:49 +0000
parents b8c0195059d9
children
line wrap: on
line source

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

// @author@	Deewiant <deewiant.doesnotlike.spam@gmail.com>
// @date@	2006-02-11
// @uri@	http://www.digitalmars.com/pnews/read.php?server=news.digitalmars.com&group=digitalmars.D.bugs&artnum=6231

module dstress.run.t.typedef_11_I;

class Foo(TYPE) {
	TYPE x;
}

int main(){
	typedef .Foo!(int) Foo;

	Foo f = new Foo();

	if(typeid(typeof(f.x)) == typeid(int)){
		return 0;
	}
}