view nocompile/o/outer_01_C.d @ 1535:20d8ee6523e1

updated to DMD-1.013
author thomask
date Mon, 07 May 2007 05:19:57 +0000
parents 0726ef6a2d54
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;
	}
}