Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test-380.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 23c34d049abd8916ab02584d263b831c9f275452 (plain)
1
2
3
4
5
6
7
8
9
10
11
// Compiler options: -unsafe

class T {
        static unsafe public int Main () {
                int *a = null;
                int **b = &a;
                if (*b == null)
                        return 0;
                return 1;
        }
}