view nocompile/union_15.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__ 19

module dstress.nocompile.union_15;

union NamedUnion{
	int i;
}

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