view run/t/typedef_23_D.d @ 1564:1d41f2132ef4

r8717@birke: tk | 2007-09-30 10:45:56 +0200 [Issue 1532] Template instance cannot use class locals as template parameters <samukha@voliacable.com> 2007-09-07 http://d.puremagic.com/issues/show_bug.cgi?id=1532
author thomask
date Sun, 30 Sep 2007 09:46:24 +0000
parents 4bf2a846ddf2
children
line wrap: on
line source

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

// @author@	davidl <david@126.com>
// @date@	2007-01-14
// @uri@	http://d.puremagic.com/issues/show_bug.cgi?id=850
// @desc@	[Issue 850] we need (*type).property to refer to property if we use typedef

module dstress.run.t.typedef_23_D;

class C{
	int myMember;
}

typedef C* X;

void foo(X x){
	(*x).myMember = 0xDEAD_DEED;
}

int main(){
	C c = new C();
	foo(cast(X) &c);

	if(0xDEAD_DEED != c.myMember){
		assert(0);
	}

	return 0;
}