summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0702-3.cs
blob: 3bba71586f184e0a9249613a1e7e64436076dc81 (plain)
1
2
3
4
5
6
7
8
// CS0702: A constraint cannot be special class `System.MulticastDelegate'
// Line: 6

using System;

class C<T> where T : MulticastDelegate
{
}