Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gcs0411-5.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a23c467394e72b6f3f92d87119391742aa0d049d (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 `World' cannot be infered 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> (IFoo<U> foo)
	{ }

	public void Test (Foo foo)
	{
		World (foo);
	}
}

class X
{
	static void Main ()
	{
	}
}