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

cs0657-6.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a161e148a3c5a6e539413cfc31531feac51180b0 (plain)
1
2
3
4
5
6
7
// cs0657.cs : 'method' is not a valid attribute location for this declaration. Valid attribute locations for this declaration are 'type'
// Line : 4

[method: Obsolete]
public interface I
{
}