Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / gtest-296.cs
1 using System.Collections.Generic;
2 using System.Collections.ObjectModel;
3
4 public class MyCollection<T> : Collection<T>
5 {
6     public void Foo()
7     {
8         T t = Items[0];
9     }
10 }
11
12 public class C
13 {
14     public static void Main () {}
15 }