New test.
[mono.git] / mcs / errors / cs0619-51.cs
1 // cs0619-51.cs: `A.comparer' is obsolete: `Please use ...'
2 // Line: 16\r
3 // Compiler options: -reference:CS0619-51-lib.dll\r
4 \r
5 using System;\r
6 using System.Collections;\r
7 \r
8 public class B : A\r
9 {\r
10         void test ()\r
11         {\r
12         }\r
13         \r
14         public void AA ()\r
15         {\r
16                 comparer += new D (test);\r
17         }\r
18         \r
19         public static void Main () {}\r
20 }\r