[wasm] Implement GC support. Embedder must provide main loop pumping function request...
[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 }