2006-12-05 Chris Toshok <toshok@ximian.com>
[mcs.git] / tests / gtest-296.cs
blobd3faefc50d494f73f1372e457066da30bfabc151
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 () {}