summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1530.cs
blob: 4ffb162ea40eab301cda5258e9dca68529a64527 (plain)
1
2
3
4
5
6
7
// CS1530: Keyword `new' is not allowed on namespace elements
// Line: 5

namespace A {
	new class X {
	}
}