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

cs7003-8.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 04d8b2c57d5a6af7327ed6fc455ddad609704f55 (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 (C.Foo<>);
	}
}