view nocompile/n/nested_class_02_D.d @ 580:5e4bd0277f63

added basic nested class tests
author thomask
date Fri, 17 Jun 2005 19:42:25 +0000
parents
children
line wrap: on
line source

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

// __DSTRESS_ELINE__ 14

module dstress.nocompile.n.nested_class_02_D;

void func(){
	int m;

	static class Inner{
		void test(int i){
		    m=i;
		}
	}
}