* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / errors / cs0619-29.cs
1 // cs0619-29.cs: `Obsolete.Error' is obsolete: `Do not use it.'
2 // Line: 15
3
4 class Obsolete {
5         [System.Obsolete("Do not use it.", true)]
6         public static bool Error {
7             get {
8                 return false;
9             }
10         }
11 }
12
13 class MainClass {
14         public static void Main () {
15                 System.Console.WriteLine (Obsolete.Error);
16         }
17 }