Merge all static runtime libs into libmono-static.
[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 }