Bump NuGet.BuildTasks to get new updates and switch to `dev` branch (#5566)
[mono.git] / mcs / errors / cs0713.cs
1 // CS0713: Static class `StaticClass' cannot derive from type `System.ArgumentException'. Static classes must derive from object
2 // Line: 4
3
4 static class StaticClass: System.ArgumentException {
5 }