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 [EMAIL PROTECTED] http://bugzilla.ximian.com/show_bug.cgi?id=78065 --- shadow/78065 2006-04-09 11:51:42.000000000 -0400 +++ shadow/78065.tmp.9373 2006-04-09 11:51:42.000000000 -0400 @@ -0,0 +1,37 @@ +Bug#: 78065 +Product: Mono: Compilers +Version: unspecified +OS: +OS Details: +Status: NEW +Resolution: +Severity: +Priority: Normal +Component: C# +AssignedTo: [EMAIL PROTECTED] +ReportedBy: [EMAIL PROTECTED] +QAContact: [EMAIL PROTECTED] +TargetMilestone: --- +URL: +Cc: +Summary: Missing interface check + +20.4.1 Explicit interface member implementations +<quote> +If the interface function member does not have a parameter array then an +associated explicit interface member implementation shall not have a +parameter array. +</quote> + + +interface I +{ + void M(int[] values); +} +class Base : I +{ + void I.M(params int[] values) {} +} + +class J { static void Main () {} } +Mono compiler does not complain about this. _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
