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

cs0619-50.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e4d6c1d20ef902563c00a49f6338417800b17062 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// cs0619-50.cs: `A.B' is obsolete: `yes'
// Line: 12

using Z = A.B;

class A
{
	[System.Obsolete("yes", true)]
	public class B
	{
	}

	static void Main ()
	{
		Z z;
	}
}