[Mono-bugs] [Bug 58413][Nor] Changed - mcs allows ref in an interface method implemented as out in a class

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Tue, 2 Nov 2004 01:52:30 -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=58413

--- shadow/58413	2004-05-25 01:09:31.000000000 -0400
+++ shadow/58413.tmp.7741	2004-11-02 01:52:30.000000000 -0500
@@ -38,6 +38,14 @@
 Actual results:
 Compilation succedeed.
 
 Expected results:
 error.cs(6,7): error CS0535: 'Test' doesn't implement interface member
 'X,Hola(ref string)'
+
+------- Additional Comments From miguel@ximian.com  2004-11-02 01:52 -------
+The problem on this bug is that we are passing Type [] to our
+pending implementation code, which has dropped the OUT information
+at that point.
+
+The fix is to move to use the ParameterData interface there
+instead of using the Type []