Test update after 'Specify explicitly type' action refactoring

This commit is contained in:
Mikhael Bogdanov
2013-02-21 18:05:56 +04:00
parent 5460f984e9
commit 49bbbe1a0b
14 changed files with 15 additions and 14 deletions
@@ -2,7 +2,7 @@
import java.util.HashMap
fun foo(map : HashMap<String, Int>) {
for (<caret>entry : MutableMap.MutableEntry<String, Int> in map.entrySet()) {
for (entry : MutableMap.MutableEntry<String, Int><caret> in map.entrySet()) {
}
}