alternative signature applies for names
mapped in standard library (and differs from auto transformed Java signature) e.g.Collections.copy(MutableList, List)
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
import java.util.HashMap
|
||||
|
||||
fun foo(map : HashMap<String, Int>) {
|
||||
for (<caret>entry : Map.Entry<String, Int> in map.entrySet()) {
|
||||
for (<caret>entry : MutableMap.MutableEntry<String, Int> in map.entrySet()) {
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user