summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0411-6.cs
blob: c6e7ffd6e16688ad40ffad05135e35b502e8923c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// CS0411: The type arguments for method `Hello.World<U>(U, IFoo<U>)' cannot be inferred from the usage. Try specifying the type arguments explicitly
// Line: 16
public interface IFoo<T>
{ }

public class Foo : IFoo<int>, IFoo<string>
{ }

public class Hello
{
	public void World<U> (U u, IFoo<U> foo)
	{ }

	public void Test (Foo foo)
	{
		World ("Canada", foo);
	}
}

class X
{
	static void Main ()
	{
	}
}