In ilasm/tests:
[mcs.git] / errors / cs0592-4.cs
blobba2e8c5af30ac5f62b2e0bdf3818d94c0919bd75
1 // cs0592-4.cs: Attribute `TestAttribute' is not valid on this declaration type. It is valid on `constructor' declarations only
2 // Line: 5
4 using System;
5 [assembly:TestAttribute ()]
7 [AttributeUsage(AttributeTargets.Constructor)]
8 public class TestAttribute: Attribute {