9 lines
145 B
C#
Raw Normal View History

// CS0702: A constraint cannot be special class `System.MulticastDelegate'
// Line: 6
using System;
class C<T> where T : MulticastDelegate
{
}