X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Ferrors%2Fcs0673.cs;h=71d420d8d2355d0abd1a127e546af72c51178eef;hb=0370aa2c77c4d536f34b601f5ee76585e1c07574;hp=fd5ea5329b02d5a230b2ffb9d3b4fdb59494d307;hpb=c5c295d0b42b7ac3a207e9facbda9ae189ce9868;p=mono.git diff --git a/mcs/errors/cs0673.cs b/mcs/errors/cs0673.cs index fd5ea5329b0..71d420d8d23 100644 --- a/mcs/errors/cs0673.cs +++ b/mcs/errors/cs0673.cs @@ -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); } }