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

test-255.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d2d80b48793407b78fbf0c1a8a63803cb438494c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using System;

[AttributeUsage(AttributeTargets.All)]
public class TestAttribute: Attribute
{
}

[type: Obsolete]

public class C {
    [return: Test]
    [Test]
    void Method () {}
    
    public static void Main () {}
}