[mcs] Allows shadowing of probing pattern variables
[mono.git] / mcs / errors / cs0466.cs
index 1588c21ce2b51bb97408ff81137ba184d8fd8968..a1f3dfbb7552837c9c97fdf184864edc72322563 100644 (file)
@@ -1,11 +1,11 @@
-// cs0466.cs:  `Base.I.M(params int[])': the explicit interface implementation cannot introduce the params modifier\r
+// CS0466:  `Base.I.M(params int[])': the explicit interface implementation cannot introduce the params modifier
 // Line: 10
-\r
-interface I\r
-{\r
-       void M(int[] values);\r
-}\r
-class Base : I\r
-{\r
-       void I.M(params int[] values) {}\r
+
+interface I
+{
+       void M(int[] values);
+}
+class Base : I
+{
+       void I.M(params int[] values) {}
 }
\ No newline at end of file