2010-05-19 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / test-380.cs
blob1122b48f2d828fce6aa8d131b82b5565faded6f2
1 // Compiler options: -unsafe
3 class T {
4 static unsafe int Main () {
5 int *a = null;
6 int **b = &a;
7 if (*b == null)
8 return 0;
9 return 1;