summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0713-2.cs
blob: 163dab8dd7e7adf4a9b4d72e6d10eb56e921a873 (plain)
1
2
3
4
5
6
7
8
// CS0713: Static class `StaticClass' cannot derive from type `System.ArgumentNullException'. Static classes must derive from object
// Line: 4

static partial class StaticClass {
}

static partial class StaticClass : System.ArgumentNullException {
}