Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / gtest-410.cs
1 // Compiler options: -unsafe
2
3 using System;
4
5 // Unsafe default expression, verifier checks IL
6
7 class Program
8 {
9         public static void Main()
10         {
11                 unsafe {
12                         int* a = (int*)null;
13                         ulong* o = default (ulong*);
14                 }
15     }
16 }