Merge pull request #4845 from lambdageek/dev-coop-delegates
[mono.git] / mcs / errors / cs0617.cs
index 04a97a9f2a36b933becb2ce19c64e7077260f0bc..b8d8ab726ed53c008998c80c4cfa361f549ca857 100644 (file)
@@ -1,26 +1,25 @@
-// cs0617.cs: `MyNamedArg' is not a valid named attribute argument. Named attribute arguments must be fields which are not readonly, static, const or read-write properties which are public and not static
-// Line : 20
+// CS0617: `MyNamedArg' is not a valid named attribute argument. Named attribute arguments must be fields which are not readonly, static, const or read-write properties which are public and not static
+// Line : 19
 
 using System;
 
 [AttributeUsage (AttributeTargets.Class, AllowMultiple = true)]
-       public class SimpleAttribute : Attribute {
+public class SimpleAttribute : Attribute
+{
+       string name;
 
-               string name = null;
-
-               public readonly string MyNamedArg;
-               
-               public SimpleAttribute (string name)
-               {
-                       this.name = name;
-               }
+       public readonly string MyNamedArg;
 
+       public SimpleAttribute (string name)
+       {
+               this.name = name;
        }
+}
 
 [Simple ("Dummy", MyNamedArg = "Dude!")]
-       public class Blah {
+public class Blah {
 
-               public static void Main ()
-               {
-               }
+       public static void Main ()
+       {
        }
+}