2010-05-27 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0675.cs
blob60cfb8584cff9ab284b55487213771c4f05c430a
1 // CS0675: The operator `|' used on the sign-extended type `int'. Consider casting to a smaller unsigned type first
2 // Line: 11
3 // Compiler options: -warnaserror -warn:3
5 public class C
7 public static void Main()
9 int x = 1;
10 int y = 1;
11 long value = (((long)x) << 32) | y;