[w32file] Remove dead code
[mono.git] / mcs / errors / cs0111-8.cs
1 // CS0111: A member `C.Foo<U>(G<U>)' is already defined. Rename this member or use different parameter types
2 // Line : 14
3
4 class G<T>
5 {
6 }
7
8 public class C
9 {
10         void Foo<T> (G<T> g)
11         {
12         }
13         
14         void Foo<U> (G<U> u)
15         {
16         }
17 }