[metadata] Fix leaks when handling a few attributes (#16675)
[mono-project.git] / mcs / tests / test-anon-94-lib.cs
blob14479c721a8f13f2606532001e164ec9ed5e94fd
1 // Compiler options: -t:library
3 using System;
5 public class BaseClassLibrary
7 public int i;
8 public virtual void Print (int arg) { Console.WriteLine ("BaseClass.Print"); i = arg; }