merge -r 53370:58178
[mono.git] / mcs / errors / cs0619-26.cs
1 // cs0619-26.cs: `AA' is obsolete: `'
2 // Line: 9
3
4 [System.Obsolete ("", true)]
5 class AA
6 {
7         public AA ()
8         {
9                 for (AA aa = null; aa != null;) {
10                         System.Console.WriteLine (aa);
11                 }
12         }
13
14         static void Main () {}
15 }