// 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: 12 interface IFoo { void Test () where U : T; } class Foo : IFoo { public void Test () { } } class X { static void Main () { } }