summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0592-4.cs
blob: 649ec2bd0329f948b70da88ca65d718cfba39376 (plain)
1
2
3
4
5
6
7
8
9
// CS0592: The 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 {
}