Bump NuGet.BuildTasks to get new updates and switch to `dev` branch (#5566)
[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 }