view nocompile/union_14.d @ 1383:52c9e86b6486

@url@ -> @uri@
author thomask
date Sun, 04 Mar 2007 13:07:35 +0000
parents f87ba6507260
children d3a3e0c251d8
line wrap: on
line source

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

// @author@	Geoff Hickey <Geoff_member@pathlink.com>
// @date@	2004-12-02
// @uri@	news:coo7ep$2089$1@digitaldaemon.com
// @uri@	nntp://news.digitalmars.com/digitalmars.D.bugs/2429

// __DSTRESS_ELINE__ 22

module dstress.nocompile.union_14;

union MyUnion{
	union NamedUnion{
		int i;
	}
}

int main(){
	MyUnion s;
	s.NamedUnion.i = 1;
	return 0;
}