summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0111-4.cs
blob: 906e6dff2dc9e201905d271a1d4a86d61982c6b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// CS0111: A member `C.Foo<U>(U)' is already defined. Rename this member or use different parameter types
// Line : 12

public class C
{
	void Foo (int i)
	{
	}
	
	void Foo<T> (T i)
	{
	}
	
	void Foo<U> (U i)
	{
	}
}