**** Merged from MCS ****
[mono-project.git] / mcs / tests / gen-81.cs
blobabb55d120c10fd4d801f7754a233e95ae1af9f4e
1 public class ArrayList<T>
3 void AddAll<U> (U u)
4 where U : T
6 InsertAll (u);
9 void InsertAll (T t)
10 { }
13 class X
15 static void Main ()
16 { }