[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs1729-3.cs
1 // CS1729: The type `X' does not contain a constructor that takes `2' arguments
2 // Line: 8
3
4 public struct X {
5         public X(int i) { }
6         
7         public static void Main() {
8                 X x = new X("foo", "bar");
9         }
10 }