Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0619-51.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: de93139646de550668be6d9118ad614179537a65 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// cs0619-51.cs: `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 () {}
}