changeset 594:1f473003ec30

John Demme <me@teqdruid.com> 2005-06-07 news:1118118941.10321.21.camel@localhost.localdomain
author thomask
date Thu, 23 Jun 2005 03:53:25 +0000
parents 6ee3b4b671c1
children 8c65d48f3d79
files nocompile/a/abstract_14.d
diffstat 1 files changed, 24 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /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 <me@teqdruid.com>
+// @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;
+}