Files
linux-packaging-mono/mcs/errors/cs0264-2.cs

11 lines
170 B
C#
Raw 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>
{
}