Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0717.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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
{
}