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

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

[System.Obsolete ("", true)]
class AA
{
        public void Foo () {}
}

class B {
        public B (object a)
        {
                ((AA)a).Foo ();
        }
}