New test.
[mono.git] / mcs / errors / cs0713.cs
1 // cs0713.cs: 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 }