Merge branch 'alexischr/nursery-canaries-managed-alloc'
[mono.git] / mcs / errors / cs0111-23.cs
1 // CS0111: A member `C.Foo<U>(U)' is already defined. Rename this member or use different parameter types
2 // Line : 12
3
4 public class C
5 {
6         void Foo<T> (T i)
7         {
8         }
9         
10         void Foo<U> (U i)
11         {
12         }
13 }