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

cs0592-8.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 78a0428689fcdf4a57f0271d1cbdcf3b7b508f5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// cs0592-8.cs: Attribute `Obsolete' is not valid on this declaration type. It is valid on `class, struct, enum, constructor, method, property, indexer, field, event, interface, delegate' declarations only
// Line : 8

using System;

public class C
{
    [return: Obsolete]
    public void Test (int a)
    {
    }
    static public void Main () {}
}