X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Ferrors%2Fcs0221-8.cs;h=0bed9326fe9b26fed8de8e5ef46efd7958817426;hb=233bbcaaa3aa9f100ef6266236bf0b5a32b49a65;hp=60f6bc9ac1dc7059f4ac1d111fef52bec81b5207;hpb=a097b5471761180c4aae2dab224ed9caeeae3e86;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); } }