2010-04-27 Lluis Sanchez <lluis@novell.com>
[mono.git] / mcs / errors / cs0675.cs
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
4
5 public class C
6 {
7    public static void Main()
8    {
9       int x = 1;
10       int y = 1;
11       long value = (((long)x) << 32) | y;
12    }
13 }
14