Merge pull request #495 from nicolas-raoul/fix-for-issue2907-with-no-formatting-changes
[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 }