Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-870.cs
1 public class Test
2 {
3         static void Foo (ushort p)
4         {
5                 p = 0x0000;
6                 p |= 0x0000;
7                 p &= 0x0000;
8
9                 const ushort c = 0x0000;
10                 p &= c;
11         }
12
13         public static void Main ()
14         {
15                 Foo (1);
16         }
17 }