summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0713.cs
blob: 52e1247fcfcec53179d71e73bca901051cab4ef9 (plain)
1
2
3
4
5
// CS0713: Static class `StaticClass' cannot derive from type `System.ArgumentException'. Static classes must derive from object
// Line: 4

static class StaticClass: System.ArgumentException {
}