X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Ferrors%2Fcs0221-8.cs;h=0bed9326fe9b26fed8de8e5ef46efd7958817426;hb=50dacc2e314097aebbdebec5ccd00301458bb420;hp=60f6bc9ac1dc7059f4ac1d111fef52bec81b5207;hpb=a3ea7ceb4d4f5e2cb8ea421313e8939640fb898c;p=mono.git diff --git a/mcs/errors/cs0221-8.cs b/mcs/errors/cs0221-8.cs index 60f6bc9ac1d..0bed9326fe9 100644 --- a/mcs/errors/cs0221-8.cs +++ b/mcs/errors/cs0221-8.cs @@ -1,8 +1,8 @@ -// cs0221-8.cs: Constant value `Infinity' cannot be converted to a `uint' (use `unchecked' syntax to override) +// CS0221: Constant value `Infinity' cannot be converted to a `uint' (use `unchecked' syntax to override) // Line: 6 class X { - static void Main () { - System.Console.WriteLine ((uint)double.PositiveInfinity); + static void Main () { + System.Console.WriteLine ((uint)double.PositiveInfinity); } }