Fix for KT-6790 J2K: Static import of Map.Entry is lost during conversion

#KT-6790 fixed
This commit is contained in:
Simon Ogorodnik
2016-12-16 19:29:39 +03:00
committed by Simon Ogorodnik
parent 73ea0e8460
commit 41aaaa6a0d
5 changed files with 31 additions and 2 deletions
+6
View File
@@ -0,0 +1,6 @@
import java.util.Map.Entry;
public class A {
void foo(Entry<Object, Object> o) {
}
}