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

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

unsafe class MainClass {
	static void *pv = null;
	static int *pi = (int *) pv;
        public static void Main () { }
}