summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0307-2.cs
blob: dcabfe84abc5a01f87d92aafad5e6f5264e65fb2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// CS0307: The namespace `N.M' cannot be used with type arguments
// Line: 15

namespace N
{
	namespace M
	{
	}
}

class Test
{
	static void Main ()
	{
		var a = N.M<int> ();
	}
}