11 lines
170 B
C#
Raw Permalink Normal View History

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