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

gcs0450.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d19bfb8d40dff54af6fd05b8317852419e6acb67 (plain)
1
2
3
4
5
6
7
8
9
10
// CS0450: `A': cannot specify both a constraint class and the `class' or `struct' constraint
// Line: 8

class A
{
}

class B<T> where T : class, A
{
}