Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

16 lines
333 B
C#

// CS0675: The operator `|' used on the sign-extended type `int'. Consider casting to a smaller unsigned type first
// Line: 11
// Compiler options: -warnaserror -warn:3
public class C
{
uint extra_flags;
internal bool BestFitMapping {
set {
extra_flags = (uint) ((extra_flags & ~0x30) | (value ? 0x10 : 0x20));
}
}
}