1 // Compiler options: -unsafe
3 // this tests making a pointer to a pointer
9 public static int Main ()
19 Console
.WriteLine ("*c == b : {0}", *c
== b
);
20 Console
.WriteLine ("**c == a : {0}", **c
== a
);
22 if (*c
== b
&& **c
== a
)
24 Console
.WriteLine ("Test passed");
29 Console
.WriteLine ("Test failed");