// CS0425: The constraints for type parameter `V' of method `Foo.Test()' must match the constraints for type parameter `U' of interface method `IFoo.Test()'. Consider using an explicit interface implementation instead // Line: 13 interface IFoo { void Test () where U : T; } class Foo : IFoo { public void Test () where V :X { } } class X { static void Main () { } }