[metadata] Fix leaks when handling a few attributes (#16675)
[mono-project.git] / mcs / tests / gtest-410.cs
blob3d02271dab6075e77a0f4a326a9cff538871c268
1 // Compiler options: -unsafe
3 using System;
5 // Unsafe default expression, verifier checks IL
7 class Program
9 public static void Main()
11 unsafe {
12 int* a = (int*)null;
13 ulong* o = default (ulong*);