codeowners update
[mono.git] / mcs / errors / cs0186-2.cs
index 6cb8bcd4d23c01a4e88699b377bb5c768d8b4bb3..fc152c24bef8d48d8682562cbc7521383989d182 100644 (file)
@@ -1,6 +1,10 @@
-// cs0186.cs: Use of null is not valid in this context// Line: 2
-class ClassMain {        public static void Main() {
-                foreach (System.Type type in null) {
-                }                    }
+// CS0186: Use of null is not valid in this context
+// Line: 2
+
+class ClassMain {    
+       public static void Main() {
+               foreach (System.Type type in null) {
+               }                    
+       }
 }