New J2K: add tests for some obsolete J2K issues

This commit is contained in:
Ilya Kirillov
2019-06-10 18:23:43 +03:00
parent 04fe51b0aa
commit 6d3967d922
29 changed files with 421 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
// RUNTIME_WITH_FULL_JDK
import java.util.HashMap;
public class TestMethodReference {
private HashMap<String, String> hashMap = new HashMap<>();
public void update(String key, String msg) {
hashMap.merge(key, msg, String::concat);
}
}