// Compiler options: -doc:xml-071.xml namespace N { public class G { } } interface X { TOutput Consume (Y a); } interface Y { } interface Z : Y, X { } class Test : Z> { /// This is the consume method. N.G X>.Consume (Y> target) { return null; } } class Program { static void Main () { } }