[Mono-bugs] [Bug 44845][Wis] Changed - MCS doesn't find the best overloaded match for a constructor

bugzilla-daemon@rocky.ximian.com bugzilla-daemon@rocky.ximian.com
Sun, 15 Jun 2003 15:41:49 -0400 (EDT)


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=44845

--- shadow/44845	Sun Jun 15 14:26:53 2003
+++ shadow/44845.tmp.23943	Sun Jun 15 15:41:49 2003
@@ -45,6 +45,27 @@
 
 How often does this happen? 
 Always
 
 Additional Information:
 SubjectAltNameExtension is part of assembly Mono.Security.dll.
+
+------- Additional Comments From bmaurer@users.sf.net  2003-06-15 15:41 -------
+I isolated this problem to the following:
+
+using System;
+using Mono.Security;
+using Mono.Security.X509;
+using Mono.Security.X509.Extensions;
+
+public class Driver {
+	public static void Main (string [] args)
+	{
+		X509Extension x = null;
+		SubjectAltNameExtension ss = new SubjectAltNameExtension (x);
+	}
+}
+
+compile with mcs driver.cs /r:Mono.Security.dll
+
+Oddly, when I included the SubjectAltNameExtension code in the test
+file, the error went away.