[loader] LoadFrom of problematic images should reprobe
[mono-project.git] / mcs / errors / cs0619-46.cs
blob39048932694e2d9840ec85e171bca2ded442ad36
1 // CS0619-46: `C' is obsolete: `Is obsolete'
2 // Line: 16
4 using System;
6 [Obsolete("Is obsolete", true)]
7 class C
9 public static string SS;
12 class MainClass
14 public static void Main ()
16 Console.WriteLine (C.SS);