Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / gtest-235-lib.cs
1 // Compiler options: /t:library
2 using System;
3
4 public class MyList<T>
5
6         public void AddAll<U> ()
7                 where U : T
8         {
9         }
10 }