2010-04-06 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0592-5.cs
blobf0f99103cf0bbda912c33ee7c2cfcf665901cb1a
1 // cs0592-5.cs: The attribute `TestAttribute' is not valid on this declaration type. It is valid on `constructor' declarations only
2 // Line: 6
4 using System;
6 [TestAttribute ()]
7 enum E {
10 [AttributeUsage(AttributeTargets.Constructor)]
11 public class TestAttribute: Attribute {