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: 7ed13b49dcf7cfe2d45931a158f76f4ec0d37f7a (plain)
1
2
3
4
5
6
7
// cs1530.cs: New not allowed on namespace declarations
// Line: 
namespace A {

	new class X {
	}
}