[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[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 }