// "Replace with <>" "false" import java.util.function.Consumer; class Test { public static > Foo test(Consumer function) { return new Foo<T>(function); } public static class Foo> { Foo(Consumer function) { } } }