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

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

using System;

[TestAttribute ()]
delegate void D ();

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