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

gtest-410.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9731ac3532924750deea7fb0ff97e1fe9902abd3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Compiler options: -unsafe

using System;

// Unsafe default expression, verifier checks IL

class Program
{
	static void Main()
	{
		unsafe {
			int* a = (int*)null;
			ulong* o = default (ulong*);
		}
    }
}