// CS0425: The constraints for type parameter `T' of method `Test.Baz.Method()' must match the constraints for type parameter `T' of interface method `Test.IBar.Method()'. Consider using an explicit interface implementation instead // Line: 18 namespace Test { using System; public interface IFoo { } public interface IBar { void Method() where T : IFoo where V : T; } public class Baz : IBar { public void Method() where T : IBar where V : T { } } }