11 lines
148 B
C#
Raw Normal View History

// 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
{
}