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

cs0592-4.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ba2e8c5af30ac5f62b2e0bdf3818d94c0919bd75 (plain)
1
2
3
4
5
6
7
8
9
// cs0592-4.cs: Attribute `TestAttribute' is not valid on this declaration type. It is valid on `constructor' declarations only
// Line: 5

using System;
[assembly:TestAttribute ()]

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