// "Replace with qualifier" "true-preview" import java.util.function.Predicate; class Test implements Predicate { void foo(){ Predicate stringPredicate = this; } public boolean test(String s) { return true; } }