# HG changeset patch # User thomask # Date 1110971363 0 # Node ID 35a1df98caf114e37550763623f49ef369c2c2ba # Parent 49b0654b9881dd3214581a37593c1ebbf9561e84 updated abstract tests to dmd-118 diff -r 49b0654b9881 -r 35a1df98caf1 nocompile/abstract_06.d --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/nocompile/abstract_06.d Wed Mar 16 11:09:23 2005 +0000 @@ -0,0 +1,18 @@ +// $HeadURL$ +// $Date$ +// $Author$ + +// @author@ Stewart Gordon +// @date@ 2004-09-24 +// @uri@ news:cj0qf6$2u2v$1@digitaldaemon.com +// @url@ nntp://news.digitalmars.com/digitalmars.D.bugs/1940 + +module dstress.nocompile.abstract_06; + +abstract class A{ +} + +int main(){ + A a = new A(); + return 0; +} diff -r 49b0654b9881 -r 35a1df98caf1 nocompile/abstract_08.d --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/nocompile/abstract_08.d Wed Mar 16 11:09:23 2005 +0000 @@ -0,0 +1,20 @@ +// $HeadURL$ +// $Date$ +// $Author$ + +// @author@ Stewart Gordon +// @date@ 2004-09-24 +// @uri@ news:cj0qf6$2u2v$1@digitaldaemon.com +// @url@ nntp://news.digitalmars.com/digitalmars.D.bugs/1940 + +module dstress.nocompile.abstract_08; + +class A{ + abstract void test(){ + } +} + +int main(){ + A a = new A(); + return 0; +} diff -r 49b0654b9881 -r 35a1df98caf1 nocompile/abstract_09.d --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/nocompile/abstract_09.d Wed Mar 16 11:09:23 2005 +0000 @@ -0,0 +1,14 @@ +// $HeadURL$ +// $Date$ +// $Author$ + +// @author@ Thomas Kuehne