[xbuild] Remove ErrorTest.TestExecute1()
[mono.git] / mcs / errors / cs0134-2.cs
index 9a88ae86b906af1af14195b04ffc80f375c8c66d..8a0492f5d1e97e7353652f6d78d0a923c2758737 100644 (file)
@@ -1,10 +1,10 @@
-// cs0134.cs: `o': the constant of reference type other than string can only be initialized with null
-// Line: 6
+// CS0134: A constant `o' of reference type `object' can only be initialized with null
+// Line: 8
 
 public class C
 {
-       public static void Main ()\r
-       {\r
-               const object o = 1; \r
+       public static void Main ()
+       {
+               const object o = 1; 
        }
 }