Merge remote branch 'upstream/master'
[mono.git] / mcs / errors / cs0264.cs
1 // CS0264: Partial declarations of `Partial<U>' must have the same type parameter names in the same order
2 // Line: 4
3
4 partial class Partial<T>
5 {
6 }
7
8 partial class Partial<U>
9 {
10 }