11 lines
139 B
C#
11 lines
139 B
C#
|
// CS0081: Type parameter declaration must be an identifier not a type
|
||
|
// Line: 4
|
||
|
|
||
|
partial class A<T, bool>
|
||
|
{
|
||
|
}
|
||
|
|
||
|
partial class A<T, O>
|
||
|
{
|
||
|
}
|