1 // Compiler options: -unsafe
4 // This tests excercises the compound assignment when the left side
5 // is an dereference operator.
9 public unsafe class Test
{
10 static int Main(string[] args
) {
11 uint[] uArr
= {0, 200}
;
12 uint[] uArr2
= {0, 200}
;
14 fixed (uint* u
= uArr
, u2
= uArr2
) {
24 if (DoOp2 (u2
) != 100)
37 private static uint DoOp (uint *u
) {
41 private static uint DoOp2 (uint *u
) {