[LoongArch64] Part-5:add loongarch support in some files for LoongArch64. (#21769)
[mono-project.git] / mcs / tests / test-870.cs
blob5faceb7b35a0afbea004b5a7e1b6c548068efc13
1 public class Test
3 static void Foo (ushort p)
5 p = 0x0000;
6 p |= 0x0000;
7 p &= 0x0000;
9 const ushort c = 0x0000;
10 p &= c;
13 public static void Main ()
15 Foo (1);