[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0619-50.cs
blobed047ab7759be2c3fc7037b436d15eeffa08cab0
1 // CS0619-50: `A.B' is obsolete: `yes'
2 // Line: 12
4 using Z = A.B;
6 class A
8 [System.Obsolete("yes", true)]
9 public class B
13 static void Main ()
15 Z z;