summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0450-2.cs
blob: 7c4947ea81494c61c35d799db183259ca8ac6840 (plain)
1
2
3
4
5
6
7
8
// CS0450: `A<bool,int>': cannot specify both a constraint class and the `class' or `struct' constraint
// Line: 8

class A<T, U>
{
}

delegate void Test<T>() where T : struct, A<bool, int>;