[System.Runtime.Remoting] Adds System.Core reference for tests
[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 }