Bump NuGet.BuildTasks to get new updates and switch to `dev` branch (#5566)
[mono.git] / mcs / errors / cs0702-3.cs
1 // CS0702: A constraint cannot be special class `System.MulticastDelegate'
2 // Line: 6
3
4 using System;
5
6 class C<T> where T : MulticastDelegate
7 {
8 }