Remove code moved to shared partition
[mono-project.git] / mcs / errors / cs0592.cs
blob604b5f8337993add70d8cc68318b7b63888f6f95
1 // CS0592: 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 ()