blob: 32a009d79c7881c48f879928abd312700d3137fa (
plain)
1
2
3
4
5
6
7
8
9
10
|
// CS0265: Partial declarations of `Partial<T>' have inconsistent constraints for type parameter `T'
// Line: 4
partial class Partial<T> where T: class, new()
{
}
partial class Partial<T> where T : new ()
{
}
|