[Mono-bugs] [Bug 55148][Cri] Changed - Duplicate constructors getting compiled

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Thu, 4 Mar 2004 00:11:08 -0500 (EST)


Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.

Changed by bmaurer@users.sf.net.

http://bugzilla.ximian.com/show_bug.cgi?id=55148

--- shadow/55148	2004-03-04 00:06:48.000000000 -0500
+++ shadow/55148.tmp.15853	2004-03-04 00:11:08.000000000 -0500
@@ -1,14 +1,14 @@
 Bug#: 55148
 Product: Mono/Compilers
 Version: unspecified
-OS: 
+OS: unknown
 OS Details: 
 Status: NEW   
 Resolution: 
-Severity: 
+Severity: Unknown
 Priority: Critical
 Component: C#
 AssignedTo: mono-bugs@ximian.com                            
 ReportedBy: gsanjay@novell.com               
 QAContact: mono-bugs@ximian.com
 TargetMilestone: ---
@@ -42,6 +42,16 @@
 Mono C# compiler version 0.30.99.0
 
 ------- Additional Comments From gsanjay@novell.com  2004-03-04 00:06 -------
 Created an attachment (id=6835)
 Test script for the bug to be reproduced.
 
+
+------- Additional Comments From bmaurer@users.sf.net  2004-03-04 00:11 -------
+You need a main method for this to compile, so here is a test we could
+put in /errors
+
+class T {
+	T () {}
+	T () {}
+	static void Main () {}
+}