[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0265.cs
1 // CS0265: Partial declarations of `Partial<T>' have inconsistent constraints for type parameter `T'
2 // Line: 4
3
4 partial class Partial<T> where T: class, new()
5 {
6 }
7
8 partial class Partial<T> where T : new ()
9 {
10 }