view run/const_10.d @ 1619:bebc7472a832

Fix #7.
author Christian Kamm <kamm incasoftware de>
date Sat, 07 Nov 2009 18:55:30 +0100
parents ce33adb482a7
children
line wrap: on
line source

// $HeadURL$
// $Date$
// $URL$

module dstress.run.const_10;

struct MyStruct{
	int i=2;
}

const MyStruct s;

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