[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0466.cs
1 // CS0466:  `Base.I.M(params int[])': the explicit interface implementation cannot introduce the params modifier
2 // Line: 10
3
4 interface I
5 {
6         void M(int[] values);
7 }
8 class Base : I
9 {
10         void I.M(params int[] values) {}
11 }