[mini] Fix test compiling when running !MOBILE
[mono.git] / mcs / errors / cs1530-2.cs
1 // CS1530: Keyword `new' is not allowed on namespace elements
2 // Line: 8
3
4 class Base
5 {
6 }
7
8 new class X: Base {
9 }
10