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

gcs0308.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2b27489c31b0380e2c7b4784afefd46a6febdee5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// CS0308: The non-generic type `N1.A' cannot be used with the type argument(s)
// Line: 11
namespace N1
{
	class A
	{ }
}

namespace N3
{
	using W = N1.A<int>;

	class X
	{
		static void Main ()
		{
		}
	}
}