fix run-test
[mcs.git] / errors / cs0675-2.cs
blobe0e184cec7710cd184e69f5453b8006a83679af7
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 uint extra_flags;
9 internal bool BestFitMapping {
10 set {
11 extra_flags = (uint) ((extra_flags & ~0x30) | (value ? 0x10 : 0x20));