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