[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0619-41.cs
1 // CS0619: `Y' is obsolete: `ooo'
2 // Line: 6
3
4 using System;
5
6 class X : I<Y>
7 {
8 }
9
10 interface I<T>
11 {
12
13 }
14
15 [Obsolete("ooo", true)]
16 class Y
17 {
18 }