1 2 3 4 5 6 7 8 9 10
// CS0717: `S' is not a valid constraint. Static classes cannot be used as constraints // Line: 8 static class S { } class Foo<T> where T : S { }