view compile/const_11.d @ 1614:709f6451b315

Fix outdated test case pointed out by Don Clugston.
author Christian Kamm <kamm incasoftware de>
date Mon, 25 May 2009 20:07:04 +0200
parents 1d1f281a9b11
children
line wrap: on
line source

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

module dstress.compile.const_11;

struct MyStruct{
	int i=2;
}

const MyStruct s;
const MyStruct* sp = &s;