[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0701.cs
1 // CS0701: `A' is not a valid constraint. A constraint must be an interface, a non-sealed class or a type parameter
2 // Line: 6
3
4 sealed class A { }
5
6 class Foo<T> where T : A
7 {
8 }