[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0568-2.cs
1 // CS0568: Structs cannot contain explicit parameterless constructors
2 // Line: 5
3
4 struct Sample {
5         public Sample ()
6                 : this ()
7         {
8         }
9 }