Merge branch 'master' of http://github.com/mono/mono
[mono.git] / mcs / errors / cs0466.cs
1 // cs0466.cs:  `Base.I.M(params int[])': the explicit interface implementation cannot introduce the params modifier\r
2 // Line: 10\r
3 \r
4 interface I\r
5 {\r
6         void M(int[] values);\r
7 }\r
8 class Base : I\r
9 {\r
10         void I.M(params int[] values) {}\r
11 }