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

gcs0264.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b2aafc3ac2f58ffb03cc907632b478f0f7351409 (plain)
1
2
3
4
5
6
7
8
9
10
// CS0264: Partial declarations of `Partial<U>' must have the same type parameter names in the same order
// Line: 4

partial class Partial<T>
{
}

partial class Partial<U>
{
}