[interp] Reduce computation under calc_section mutex
[mono-project.git] / mcs / tests / gtest-075.cs
blob18f623ed494a25d23817e9f961d135ea99ef75e2
1 public interface IExtensible<T>
3 void AddAll<U> (U item)
4 where U : T;
7 public class ArrayList<T> : IExtensible<T>
9 void IExtensible<T>.AddAll<U> (U item)
10 { }
13 class X
15 public static void Main ()
16 { }