Merge pull request #82 from Unity-Technologies/master-gc-race
[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 }