[mcs] C#7 throw expression
[mono.git] / mcs / errors / cs0717.cs
1 // CS0717: `S' is not a valid constraint. Static classes cannot be used as constraints
2 // Line: 8
3
4 static class S
5 {
6 }
7
8 class Foo<T> where T : S
9 {
10 }