**** Merged from MCS ****
[mono-project.git] / mcs / errors / cs0619-29.cs
blob473d0f8fd04bad6e17b5beeedb811f6dbbcb364f
1 // cs0619.cs: 'Obsolete.Error' is obsolete: 'Do not use it'
2 // Line: 15
4 class Obsolete {
5 [System.Obsolete("Do not use it.", true)]
6 public static bool Error {
7 get {
8 return false;
13 class MainClass {
14 public static void Main () {
15 System.Console.WriteLine (Obsolete.Error);