view nocompile/const_11.d @ 153:ce33adb482a7

added const tests
author thomask
date Thu, 25 Nov 2004 15:25:04 +0000
parents
children 1f6cf5ccfbc9
line wrap: on
line source

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

module dstress.nocompile.const_11;

struct MyStruct{
	int i=2;
}

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