[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0231-2.cs
1 // CS0231: A params parameter must be the last parameter in a formal parameter list
2 // Line: 5
3 class Test
4 {
5         void Foo (params object[] o, params bool[] b) {}
6 }
7