[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0619-6.cs
1 // CS0619: `A._value' is obsolete: `Do not use it'
2 // Line: 9
3
4 class A {
5     [System.Obsolete("Do not use it", true)]
6     int _value;
7     
8     public A () {
9         _value = 4;
10     }
11 }