X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Ferrors%2Fcs0675.cs;h=60cfb8584cff9ab284b55487213771c4f05c430a;hb=be95f699da177f6e2d13937062b8c6eca449104f;hp=1223911549bcbc4206cbbd4fe0913ff07b4ec708;hpb=fc4b07f20f9e79fe99d4b520bb5ff8b5e80b10f6;p=mono.git diff --git a/mcs/errors/cs0675.cs b/mcs/errors/cs0675.cs index 1223911549b..60cfb8584cf 100644 --- a/mcs/errors/cs0675.cs +++ b/mcs/errors/cs0675.cs @@ -1,14 +1,14 @@ -// CS0675: The operator `|' used on the sign-extended type `int'. Consider casting to a smaller unsigned type first -// Line: 11 -// Compiler options: -warnaserror -warn:3 - -public class C -{ - public static void Main() - { - int x = 1; - int y = 1; - long value = (((long)x) << 32) | y; - } -} - +// CS0675: The operator `|' used on the sign-extended type `int'. Consider casting to a smaller unsigned type first +// Line: 11 +// Compiler options: -warnaserror -warn:3 + +public class C +{ + public static void Main() + { + int x = 1; + int y = 1; + long value = (((long)x) << 32) | y; + } +} +