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

class Base
{
}

new class X: Base {
}