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

cs0619-9.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 215393bd3336ea5385f48bdb023d9ffe20106e0d (plain)
1
2
3
4
5
6
7
8
9
10
11
// cs0619.cs: 'ObsoleteInterface' is obsolete: ''
// Line: 11

using System;

[Obsolete("", true)]
interface ObsoleteInterface
{
}

delegate ObsoleteInterface @delegate ();