quote only work on lambda on net_4_0
[mcs.git] / errors / cs0675.cs
blob1223911549bcbc4206cbbd4fe0913ff07b4ec708
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;