[Mono-bugs] [Bug 47234][Nor] Changed - MCS cannot resolve between fix parameters and variable parameter lists

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Wed, 24 Dec 2003 23:28:52 -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=47234

--- shadow/47234	2003-08-06 10:40:25.000000000 -0400
+++ shadow/47234.tmp.29133	2003-12-24 23:28:52.000000000 -0500
@@ -1,16 +1,16 @@
 Bug#: 47234
-Product: Mono/MCS
+Product: Mono/Compilers
 Version: unspecified
 OS: Debian Woody
 OS Details: 
 Status: NEW   
 Resolution: 
 Severity: Unknown
 Priority: Normal
-Component: Misc
+Component: C#
 AssignedTo: ravi@ximian.com                            
 ReportedBy: JoergR@voelcker.com               
 QAContact: mono-bugs@ximian.com
 TargetMilestone: ---
 URL: 
 Cc: 
@@ -47,6 +47,15 @@
 Created an attachment (id=5028)
 Test case
 
 
 ------- Additional Comments From ravi@ximian.com  2003-08-01 14:03 -------
 Assigning to myself
+
+------- Additional Comments From bmaurer@users.sf.net  2003-12-24 23:28 -------
+Simpler test case:
+
+class T {
+	static void Foo (int i, string s, T t) {}
+	static void Foo (int i, string s, params object [] array) {}
+	static void Main () { Foo (1, "", null); }
+}