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

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

using System;

[Obsolete("Do not use it.", true)]
interface I
{
}

class A
{
}

class C: A, I
{
}