Merge pull request #4615 from alexanderkyte/string_error_handling
[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 }