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: baf0cbaf222c07fcf74f899130b3c96c916cf5ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// cs0657.cs : Attribute 'Obsolete' is not valid on this declaration type. It is valid on 'class, struct, enum, constructor, method, property, field, event, interface, delegate' declarations only.
// Line : 8

using System;

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