[ilasm] Don't break arguments compatiblity
[mono-project.git] / mcs / errors / cs0265.cs
blob32a009d79c7881c48f879928abd312700d3137fa
1 // CS0265: Partial declarations of `Partial<T>' have inconsistent constraints for type parameter `T'
2 // Line: 4
4 partial class Partial<T> where T: class, new()
8 partial class Partial<T> where T : new ()