view nocompile/c/class_21_A.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.c.class_21_A;

class C{
	int i;	
}

void main(){
	C c = new C();

	int x;

	x = c->i;
}