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

cs1530.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6ab7f8b4cb84d90bbcbdfe772cf35b3fd2c2057e (plain)
1
2
3
4
5
6
7
// cs1530.cs: Keyword new not allowed on namespace elements
// Line: 5

namespace A {
	new class X {
	}
}