[metadata] Fix leaks when handling a few attributes (#16675)
[mono-project.git] / mcs / tests / gtest-354.cs
blob82a3e6ad3adc1831e77ca955f64fd5f79d0abb3b
1 interface IA<T>
3 T Method (int index);
6 interface IB
8 void Method (int index);
11 interface IC : IA<string>, IB
13 void Method (params int[] index);
16 class M : IC
19 void IC.Method (params int[] index)
23 string IA<string>.Method (int index)
25 throw new System.NotImplementedException ();
28 void IB.Method (int index)
30 throw new System.NotImplementedException ();
33 public static void Main ()
35 IC ic = new M ();
36 ic.Method (1);