// 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>
{
}