[metadata] Fix leaks when handling a few attributes (#16675)
[mono-project.git] / mcs / tests / gtest-100.cs
blobc82e5907e89ca8a80bfe8771ed6f4f455c032302
1 using System;
3 // Runtime test for mono_class_setup_vtable()
4 namespace C5
6 public interface ICollection<T>
8 void Test<U> ();
11 public abstract class ArrayBase<T> : ICollection<T>
13 void ICollection<T>.Test<U> ()
14 { }
17 public class ArrayList<V> : ArrayBase<V>
22 class X
24 public static void Main ()
26 C5.ArrayList<int> array = new C5.ArrayList<int> ();