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

cs0619-7.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f352c64aac1c0d72182afdbc6c432d5322659dcf (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("Is obsolete", true)]
class ObsoleteClass
{
}

interface Ex
{
	void Foo (ObsoleteClass o1, ObsoleteClass o2);
}