New J2K: add some tests from obsolete issues

This commit is contained in:
Ilya Kirillov
2019-06-21 17:31:17 +03:00
parent 98be5d8ed0
commit 0dfaae2bb4
41 changed files with 557 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
// RUNTIME_WITH_FULL_JDK
import java.util.function.Predicate;
public class TestSamInitializedWithLambda {
public final Predicate<String> isEmpty =
x -> x.length() == 0;
}