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: 1122b48f2d828fce6aa8d131b82b5565faded6f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
// Compiler options: -unsafe

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