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

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

using System;

[Obsolete("Do not use it", true)]
class A {
}

class B {
    static A _a = new A ();
}