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