changeset 221:62221b7d401e

abstract constructor Jarrett Billingsley <kb3ctd2@yahoo.com> 2004-12-29 news:cqvnro$26ul$1@digitaldaemon.com nntp://digitalmars.com/digitalmars.D.bugs/2624
author thomask
date Thu, 30 Dec 2004 11:04:44 +0000
parents 8fa24d6682cd
children a0f0b23919a6
files nocompile/abstract_05.d
diffstat 1 files changed, 19 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/nocompile/abstract_05.d	Thu Dec 30 11:04:44 2004 +0000
@@ -0,0 +1,19 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	Jarrett Billingsley <kb3ctd2@yahoo.com>
+// @date@	2004-12-29
+// @uri@	news:cqvnro$26ul$1@digitaldaemon.com
+// @url@	nntp://digitalmars.com/digitalmars.D.bugs/2624
+
+module dstress.nocompile.abstract_05;
+
+class Base{
+    abstract this();
+}
+
+int main(){
+	Base b=new Base();
+	return 0;
+}