# HG changeset patch # User thomask # Date 1119498805 0 # Node ID 1f473003ec30920e4114e915fc0e895bd0b39952 # Parent 6ee3b4b671c1457544bacb126fbb5671df59b444 John Demme 2005-06-07 news:1118118941.10321.21.camel@localhost.localdomain diff -r 6ee3b4b671c1 -r 1f473003ec30 nocompile/a/abstract_14.d --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/nocompile/a/abstract_14.d Thu Jun 23 03:53:25 2005 +0000 @@ -0,0 +1,24 @@ +// $HeadURL$ +// $Date$ +// $Author$ + +// @author@ John Demme +// @date@ 2005-06-07 +// @uri@ news:1118118941.10321.21.camel@localhost.localdomain + +// :23 is tested in abstract_08 + +// __DSTRESS_ELINE__ 16 + +module dstress.nocompile.a.abstract_14; + +class A{ + abstract void test(); +} + +class B : A{ +} + +void main(){ + B b = new B; +}