blob: d7c0672a3488d7bc73556bed3eaf4c6f9098cda6 (
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>
{
}
|