New J2K: fix test data for java8MapForEachWithFullJdk test

This commit is contained in:
Ilya Kirillov
2019-06-05 18:50:29 +03:00
parent a56155ca73
commit f75a7cbfc9
@@ -1,8 +1,6 @@
import java.util.HashMap
internal class Test {
fun test(map: HashMap<String, String>) {
map.forEach { (key, value) -> foo(key, value) }
map.forEach { (key: String, value: String) -> foo(key, value) }
}
fun foo(key: String, value: String) {}