X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Ferrors%2Fcs0221-9.cs;h=4814058bf0d50a09ed57c095a32e5f9084ef20e8;hb=38bf98614251a8b8a1e7dd06e59b17ff2f956305;hp=91139cbf647dfc57f29433d521d47b966aa6dde2;hpb=07ec1253c277856bdbb74213e2defc8ed23cf8e3;p=mono.git diff --git a/mcs/errors/cs0221-9.cs b/mcs/errors/cs0221-9.cs index 91139cbf647..4814058bf0d 100644 --- a/mcs/errors/cs0221-9.cs +++ b/mcs/errors/cs0221-9.cs @@ -1,9 +1,9 @@ -// cs0221-9.cs: Constant value `3.402823E+38' cannot be converted to a `ulong' (use `unchecked' syntax to override) +// CS0221: Constant value `3.402823E+38' cannot be converted to a `ulong' (use `unchecked' syntax to override) // Line: 6 class X { - static void Main () { - const float d = float.MaxValue; - ulong b = (ulong) d; + static void Main () { + const float d = float.MaxValue; + ulong b = (ulong) d; } }