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

gcs0411-4.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 60f3cb0160682be7f2ba840395e6b75dbcc84085 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using System;

delegate int E ();

class X
{
	public static T G<T> ()
	{
		throw new ArgumentException ();
	}

	static void Main ()
	{
		E e2 = new E (G);
	}
}