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