[metadata] Fix leaks when handling a few attributes (#16675)
[mono-project.git] / mcs / tests / gtest-333.cs
blobdf5d39544f578eae8c0f2c117c3257eadbe5a88d
1 using System;
3 public static class Program
5 public static void Main ()
7 Exception ex1 = null ?? new Exception ();
8 Exception ex2 = new Exception() ?? null;