Revert last 2 chances
[mono.git] / mcs / errors / cs0673.cs
index fd5ea5329b02d5a230b2ffb9d3b4fdb59494d307..71d420d8d2355d0abd1a127e546af72c51178eef 100644 (file)
@@ -1,11 +1,10 @@
-//
-// cs0673.cs: System.Void cannot be used from C# -- use typeof (void) to get the void type object.
-// 
+// cs0673.cs: System.Void cannot be used from C#. Use typeof (void) to get the void type object
+// Line: 8
 
 public class X
 {
        public static void Main()
        {
-               Type t = typeof (System.Void);
+               System.Type t = typeof (System.Void);
        }
 }