Improve error messages to help users diagnose problems when using custom mode (#4922)
[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 }