[tests] prepares Java tests for the language level raise

This commit is contained in:
Roman Shevchenko
2017-03-24 13:19:01 +01:00
parent 05b15f593e
commit 6bd1b92c6e
38 changed files with 129 additions and 166 deletions
@@ -1,7 +1,7 @@
import java.util.*;
class TestData<K> {}
interface TerminalOp<L, M> extends IntermediateOp<L, M> {}
interface IntermediateOp<L1, M1> { boolean _(L1 l, M1 m);}
interface IntermediateOp<L1, M1> { boolean m(L1 l, M1 m);}
class Test1 {
@@ -52,7 +52,7 @@ class Test4 {
}
public interface BiPredicate1<T, U> extends IntermediateOp1<T, U>{
boolean _(T t, U u);
boolean m(T t, U u);
}
public interface TerminalOp1<T, U> extends IntermediateOp1<T, U> {}