[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / tests / test-380.cs
1 // Compiler options: -unsafe
2
3 class T {
4         static unsafe public int Main () {
5                 int *a = null;
6                 int **b = &a;
7                 if (*b == null)
8                         return 0;
9                 return 1;
10         }
11 }