[mcs] Allow properties and indexers of by-ref values to be set without setter
[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 }