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

gcs0246-8.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bd1d79c2f9ed878a8b76faa7796f5b9a59c7139b (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 type arguments.
// Line: 11
namespace N1
{
	class A
	{ }
}

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

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