[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0132-3.cs
1 // CS0132: `Foo.Foo(int)': The static constructor must be parameterless
2 // Line: 10
3
4 class Foo
5 {
6         static Foo ()
7         {
8         }
9
10         static Foo (int x)
11         {
12         }
13
14         static void Main ()
15         {
16         }
17 }