// "Remove 'CodeBlock2Expr' suppression" "false" import java.util.*; interface I { int m(); } public class SampleSafeVarargs { { I i = () -> { //noinspection CodeBlock2Expr return foo(); }; } int foo() { return 1; } }