2010-05-27 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / gtest-497.cs
blob2cc549e402417ebfe504bb900d52bd28db06158c
1 class Item
5 class ItemCollection<T> where T : Item
7 public void Bind<U> (ItemCollection<U> sub) where U : T
12 class a
14 static void Main ()
16 var ic = new ItemCollection<Item> ();
17 ic.Bind (ic);