[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0111-4.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 (int i)
7         {
8         }
9         
10         void Foo<T> (T i)
11         {
12         }
13         
14         void Foo<U> (U i)
15         {
16         }
17 }