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

cs0619-3.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 896190b77ee1ae09c85ef6a7aff5727058607f0f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// cs0619.cs: 'ObsoleteIface ' is obsolete: 'Do not use it'
// Line: 13

using System;

[Obsolete("Yeah, is obsolete", true)]
enum ObsoleteEnum
{
}

interface Ex
{
	ObsoleteEnum Foo ();
}