Update mcs/class/System.Core/System/TimeZoneInfo.cs
[mono.git] / mcs / tests / gtest-075.cs
1 public interface IExtensible<T>
2 {
3         void AddAll<U> (U item)
4                 where U : T;
5 }
6
7 public class ArrayList<T> : IExtensible<T>
8 {
9         void IExtensible<T>.AddAll<U> (U item)
10         { }
11 }
12
13 class X
14 {
15         static void Main ()
16         { }
17 }