a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
15 lines
232 B
C#
15 lines
232 B
C#
// CS0455: Type parameter `Y' inherits conflicting constraints `class' and `long'
|
|
// Line: 11
|
|
|
|
abstract class A<T>
|
|
{
|
|
public abstract void Foo<U> () where U : class, T;
|
|
}
|
|
|
|
class B : A<long>
|
|
{
|
|
public override void Foo<Y> ()
|
|
{
|
|
}
|
|
}
|