[bcl] Update BCL Linked Size
[mono-project.git] / mcs / tests / gtest-635.cs
blob8bb31b3773e788722d9a76e33af303b96bbc42ed
1 public interface I<T>
3 T Clone();
4 T1 Clone<T1>() where T1 : T;
7 public interface I2 : I<I2>
11 public class TestClass : I2
13 public I2 Clone ()
15 return null;
18 public T1 Clone<T1> () where T1 : I2
20 return (T1) Clone();
23 public static void Main ()
25 new TestClass ();