[mcs] Report more errors for nameof expressions. Fixes #44168
[mono.git] / mcs / errors / cs0710.cs
1 // CS0710: `StaticClass': Static classes cannot have instance constructors
2 // Line: 5
3
4 static class StaticClass {
5         public StaticClass () {}
6 }