view nocompile/const_08.d @ 1599:d37b19f7e8bb

Move run/c/case_01 to nocompile.
author Christian Kamm <kamm incasoftware de>
date Tue, 09 Sep 2008 17:28:31 +0200
parents 1f6cf5ccfbc9
children
line wrap: on
line source

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

// struct allocation at compiletime is impossible

// __DSTRESS_ELINE__ 15

module dstress.nocompile.const_08;

struct MyStruct{
	int i;
}

const MyStruct* s = new MyStruct;