summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0717.cs
blob: b7d06d1ee3f99364c512fed025bda85b07d425e9 (plain)
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
{
}