summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0308.cs
blob: de8daf16cb95613549e71cf1a658b6623ff842f8 (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 arguments
// Line: 11
namespace N1
{
	class A
	{ }
}

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

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