[runtime] Coverage profiler fixes (#5698)
[mono.git] / mcs / errors / cs1530.cs
1 // CS1530: Keyword `new' is not allowed on namespace elements
2 // Line: 5
3
4 namespace A {
5         new class X {
6         }
7 }