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

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

class Base
{
}

new class X: Base {
}