view compile/const_11.d @ 1619:bebc7472a832

Fix #7.
author Christian Kamm <kamm incasoftware de>
date Sat, 07 Nov 2009 18:55:30 +0100
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;