Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gcs0265.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9057bd9073258f35c8b131dd85058b12f8b251bb (plain)
1
2
3
4
5
6
7
8
9
10
// gcs0265.cs: 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 ()
{
}