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

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

using System;

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

class B {
    I i;
}