* HttpWebRequestTest.cs: Remove usage of deprecated Assertion class.
[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\r
2 // Line: 11\r
3 // Compiler options: -warnaserror -warn:3\r
4 \r
5 public class C\r
6 {\r
7         uint extra_flags;\r
8                 \r
9         internal bool BestFitMapping {\r
10                 set {\r
11                         extra_flags = (uint) ((extra_flags & ~0x30) | (value ? 0x10 : 0x20));\r
12                 }\r
13         }\r
14 }\r
15 \r