view nocompile/s/struct_24.d @ 844:e3c9f22bff58

C# and C++ porting
author thomask
date Fri, 17 Feb 2006 10:14:12 +0000
parents
children
line wrap: on
line source

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

// Porting: C++

// __DSTRESS_ELINE__ 20

module dstress.nocompile.s.struct_24;

struct S{
	int i;	
}

void main(){
	S* s = new S();

	int x;

	x = s->i;
}