changeset 246:99a247060cbf

super in class constructor zwang <nehzgnaw@gmail.com> 2005-01-23 news:ct0lj6$si1$1@digitaldaemon.com nntp://news.digitalmars.com/digitalmars.D.bugs/2744
author thomask
date Sun, 23 Jan 2005 18:57:23 +0000
parents 2203faa5bf92
children 3bc2f45a191f
files reporter.txt run/super_10.d
diffstat 2 files changed, 23 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/reporter.txt	Sun Jan 23 11:22:29 2005 +0000
+++ b/reporter.txt	Sun Jan 23 18:57:23 2005 +0000
@@ -1,4 +1,4 @@
-Thanks to all the bug reporters and for the test case suggestions.
+Thanks to all the bug reporters and for the test case suggestions.
 
 Aleksey Bobnev 		<uw@front.ru>
 Andy Friesen		<andy@ikagames.com>
@@ -58,3 +58,4 @@
 van eeshan 		<vanee@hotmail.com>
 Vathix 			<vathixSpamFix@dprogramming.com>
 Walter 			<newshound@digitalmars.com>
+zwang			<nehzgnaw@gmail.com>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/run/super_10.d	Sun Jan 23 18:57:23 2005 +0000
@@ -0,0 +1,21 @@
+// $HeadURL$
+// $Date$
+// $Author$
+
+// @author@	zwang <nehzgnaw@gmail.com>
+// @date@	2005-01-23
+// @uri@	news:ct0lj6$si1$1@digitaldaemon.com
+// @url@	nntp://news.digitalmars.com/digitalmars.D.bugs/2744
+
+module dstress.run.super_10;
+
+class MyClass{
+	this(){
+		super();
+	}
+}
+
+int main(){
+	MyClass c = new MyClass();
+	return 0;
+}
\ No newline at end of file