[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs1967.cs
1 // CS1967: A constraint cannot be the dynamic type
2 // Line: 4
3
4 class C<T> where T : dynamic
5 {
6 }