2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0592-4.cs
blobd4a73a2a122ef24f4d615addf27c7103c7e87ca0
1 // cs0592-4.cs: The 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 {