[Mono-bugs] [Bug 55318][Nor] Changed - Invalid error CS0214 when compiling unsafe code in interface

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Mon, 15 Mar 2004 17:06:32 -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 miguel@ximian.com.

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

--- shadow/55318	2004-03-15 13:55:08.000000000 -0500
+++ shadow/55318.tmp.1106	2004-03-15 17:06:32.000000000 -0500
@@ -1,13 +1,13 @@
 Bug#: 55318
 Product: Mono: Compilers
 Version: unspecified
 OS: unknown
 OS Details: 
-Status: REOPENED   
-Resolution: 
+Status: RESOLVED   
+Resolution: FIXED
 Severity: Unknown
 Priority: Normal
 Component: C#
 AssignedTo: mono-bugs@ximian.com                            
 ReportedBy: gert.driesen@pandora.be               
 QAContact: mono-bugs@ximian.com
@@ -64,6 +64,36 @@
 }
 
 I'll check whether it still fails on Mono cvs later ...
 
 ------- Additional Comments From gert.driesen@pandora.be  2004-03-15 13:55 -------
 I can also reproduce this issue on Mono/cvs.
+
+------- Additional Comments From miguel@ximian.com  2004-03-15 17:06 -------
+I got a confirmation from the QA lead at Microsoft about this
+error, this was a bug in MS C#, and it has been fixed in Whidbey.
+
+For the record, his contact info is:
+
+Gus Perez <gusperez@microsoft.com>
+
+
+CVS works with the sample you provided, this is what I have:
+
+public class Test
+{
+	public static void Main ()
+	{
+	}
+}
+
+internal class InternalFoo
+{
+}
+
+class PublicBar
+{
+	protected void Bar (InternalFoo foo)
+	{
+	}
+}
+