Initial set of Ward sgen annotations (#5705)
[mono.git] / mcs / errors / cs0675-2.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         uint extra_flags;
8                 
9         internal bool BestFitMapping {
10                 set {
11                         extra_flags = (uint) ((extra_flags & ~0x30) | (value ? 0x10 : 0x20));
12                 }
13         }
14 }
15