Updated with review feedback.
[mono.git] / mcs / errors / cs0713-2.cs
1 // CS0713: Static class `StaticClass' cannot derive from type `System.ArgumentNullException'. Static classes must derive from object
2 // Line: 4
3
4 static partial class StaticClass {
5 }
6
7 static partial class StaticClass : System.ArgumentNullException {
8 }