summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0264-2.cs
blob: e1f791621e9d685846960496dcc3ad567cbc38c3 (plain)
1
2
3
4
5
6
7
8
9
10
// CS0264: Partial declarations of `A<T,O>' must have the same type parameter names in the same order
// Line: 8

partial class A<T, bool>
{
}

partial class A<T, O>
{
}