summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0592-5.cs
blob: 3a165ff48cf06adada7708f331f05837279fda43 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// CS0592: The attribute `TestAttribute' is not valid on this declaration type. It is valid on `constructor' declarations only
// Line: 6

using System;

[TestAttribute ()]
enum E {
}

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