remove spurious error in code
authorRaja R Harinath <harinath@hurrynot.org>
Wed, 17 Jan 2007 11:03:11 +0000 (11:03 -0000)
committerRaja R Harinath <harinath@hurrynot.org>
Wed, 17 Jan 2007 11:03:11 +0000 (11:03 -0000)
svn path=/trunk/mcs/; revision=71182

mcs/errors/gcs0029-2.cs

index 14ccaeb5406e6450f450a6981adaf09984ff7fed..91c67b45a3f2b4a2d259402a5652821120d63e15 100644 (file)
@@ -1,10 +1,10 @@
 // CS0029: Cannot implicitly convert type `T' to `int*'
 // Line : 8
-// Compiler options: -unsafe\r
-\r
-class T {\r
-       static unsafe int Main ()\r
-       {\r
-               int *a = default(T);\r
-       }\r
-}\r
+// Compiler options: -unsafe
+
+class T {
+       static unsafe void Main ()
+       {
+               int *a = default(T);
+       }
+}