[metadata] Fix leaks when handling a few attributes (#16675)
[mono-project.git] / mcs / tests / gtest-469.cs
blobd7b293e75d5aa79e04f5354cdc3d8905686b72f4
1 interface I<T>
5 class Foo<T1, T2> where T2 : I<I<T1>>
7 public Foo (T2 t2)
12 class Bar : I<I<string>>
14 public static int Main ()
16 var foo = new Foo<string, Bar> (new Bar ());
17 return 0;