[ilasm] Don't break arguments compatiblity
[mono-project.git] / mcs / tests / test-380.cs
blob23c34d049abd8916ab02584d263b831c9f275452
1 // Compiler options: -unsafe
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;