summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0101-9.cs
blob: 9ae3a3a060e4a8effe1bd575b5a4326a421c3f5f (plain)
1
2
3
4
5
6
7
8
// CS0101: The namespace `N' already contains a definition for `Test<T>'
// Line: 7
// Compiler options: CS0101-9-2.cs

namespace N
{
	class Test<T> {}
}