summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0450.cs
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
{
}