[ilasm] Don't break arguments compatiblity
[mono-project.git] / mcs / tests / gtest-296.cs
blob8e19cccf355168f3961f3bcc2a5188128b957f30
1 using System.Collections.Generic;
2 using System.Collections.ObjectModel;
4 public class MyCollection<T> : Collection<T>
6 public void Foo()
8 T t = Items[0];
12 public class C
14 public static void Main () {}