8 lines
188 B
Java
Vendored
8 lines
188 B
Java
Vendored
// RUNTIME_WITH_FULL_JDK
|
|
|
|
import java.util.function.Predicate;
|
|
|
|
public class TestSamInitializedWithLambda {
|
|
public final Predicate<String> isEmpty =
|
|
x -> x.length() == 0;
|
|
} |