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: 594c04d7227758703cddec757a5abd1b4099ac74 (plain)
1
2
3
4
5
6
7
// cs1530.cs: Keyword `new' is not allowed on namespace elements
// Line: 5

namespace A {
	new class X {
	}
}