a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
9 lines
145 B
C#
9 lines
145 B
C#
// CS0702: A constraint cannot be special class `System.MulticastDelegate'
|
|
// Line: 6
|
|
|
|
using System;
|
|
|
|
class C<T> where T : MulticastDelegate
|
|
{
|
|
}
|