// "Implement methods" "true-preview" import java.util.Optional; interface I { Optional foo(); } class Impl implements I { }