view nocompile/o/outer_01_C.d @ 1168:0726ef6a2d54

added basic .outer tests
author thomask
date Wed, 04 Oct 2006 06:27:50 +0000
parents
children
line wrap: on
line source

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

// __DSTRESS_ELINE__ 15

module dstress.nocompile.o.outer_01_C;

class A{
	static class B{
	}

	void* test(){
		B b = new B();
		return b.outer;
	}
}