[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0283-2.cs
1 // CS0283: The type `S' cannot be declared const
2 // Line: 12
3
4 struct S
5 {
6 }
7
8 class C
9 {
10         public void Foo ()
11         {
12                 const S s = new S();
13         }
14 }