11 lines
211 B
C#
11 lines
211 B
C#
|
// 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 ()
|
||
|
{
|
||
|
}
|