[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0118-4.cs
1 // CS0118: `x.a.B' is a `property' but a `type' was expected
2 // Line: 9
3
4 using System;
5
6 namespace x
7 {
8         class a
9         {
10                 bool B { set {} }
11                 
12                 void Test (B b) {}
13         }
14 }