view run/mixin_06.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 da96294e4233
children 52c9e86b6486
line wrap: on
line source

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

// @author@	Ilya Zaitseff <sark7@mail333.com>
// @date@	2005-02-22
// @uri@	news:opsmlwgpo1aaezs2@robingood
// @url@	nntp://news.digitalmars.com/digitalmars.D.bugs/3034

module dstress.run.mixin_06;

struct S{
	int x;
}

const S s = { x:2 };

int main(){
	assert(s.x==2);
	return 0;
}