view nocompile/final_01.d @ 1536:89775df1607d

vtable can't be used as a template parameter
author thomask
date Mon, 07 May 2007 05:20:25 +0000
parents e38919011244
children 00ac8cb240eb
line wrap: on
line source

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

// __DSTRESS_ELINE__ 15

module dstress.nocompile.final_01;

class Parent{
	final void test(){
	}
}

class Child : Parent{
	void test(){
	}
}