view run/protected_01.d @ 1330:f3f715978184

Georg Wrede <georg@iki.fi> 2007-01-07 mail:45A120F5.1050108@iki.fi
author thomask
date Sat, 13 Jan 2007 10:33:49 +0000
parents 4cbdf8397c82
children b8c0195059d9
line wrap: on
line source

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

// @author@	Mike Parker <aldacron71@yahoo.com>
// @date@	2005-04-25
// @uri@	news:d4i19u$12td$1@digitaldaemon.com

module dstress.run.protected_01;

template T(){
	protected int x;
}

class MyClass{
	mixin T;
}

int main(){
	MyClass c=new MyClass;
	c.x = 1;
	return 0;
}