view run/struct_01.d @ 1624:16361129bf5f

add test
author Moritz Warning <moritzwarning@web.de>
date Thu, 06 Jan 2011 14:25:32 +0100
parents f87ba6507260
children
line wrap: on
line source

// $HeadURL$
// $Date$
// $Author$

module dstress.run.struct_01;

struct MyStruct{
}

int main(){
	MyStruct m;
	MyStruct * n = &m;
	return 0;
}