[utils] Add check for ANDROID_UNIFIED_HEADERS to mono-compiler.h (#5742)
[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 }