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