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

cs7003-7.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e7bdd50145c9936b45231bc41876ca734b13c056 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// CS7003: Unbound generic name is not valid in this context
// Line: 12

static class C
{
	static void Foo<T> ()
	{
	}

	static void Main ()
	{
		string s = nameof (Foo<>);
	}
}