[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0401.cs
1 // CS0401: The `new()' constraint must be the last constraint specified
2 // Line: 4
3
4 class Foo<T> where T : new (), new ()
5 {
6 }