Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / gtest-561.cs
1 // Compiler options: -r:gtest-561-lib.dll
2
3 using System.Collections.Generic;
4
5 class C : A, I
6 {
7         public void Foo<T> (List<T> arg) where T : A
8         {
9         }
10         
11         public static void Main ()
12         {
13                 new C ().Foo(new List<A> ());
14         }
15 }