2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0592.cs
blobe4833e0f6113fed17d151d9469b54560253bee6c
1 // cs0592.cs: The attribute `SimpleAttribute' is not valid on this declaration type. It is valid on `constructor' declarations only
2 // Line : 22
4 using System;
6 [AttributeUsage (AttributeTargets.Constructor, AllowMultiple = true)]
7 public class SimpleAttribute : Attribute {
9 string name = null;
11 public string MyNamedArg;
13 public SimpleAttribute (string name)
15 this.name = name;
21 [Simple ("Dummy", MyNamedArg = "Dude!")]
22 public class Blah {
24 public static void Main ()