[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0619-31.cs
blob4e69c7c1b26a660c39005494b04f1ac9fb6e7c7a
1 // CS0619-31: `ObsoleteEnum' is obsolete: `Is obsolete'
2 // Line: 15
4 using System;
6 [Obsolete("Is obsolete", true)]
7 enum ObsoleteEnum
9 value_B
12 class MainClass {
13 public static void Main ()
15 Console.WriteLine (ObsoleteEnum.value_B);