tests changes after collections mapping

This commit is contained in:
Svetlana Isakova
2012-09-04 17:03:39 +04:00
parent 2cad93e4be
commit 7d37df5f38
65 changed files with 75 additions and 114 deletions
@@ -1,7 +1,5 @@
// "Specify Type Explicitly" "true"
import java.util.Map
fun getEntry() : java.util.Map.Entry<jet.Array<String>, java.sql.Array> {
fun getEntry() : Map.Entry<jet.Array<String>, java.sql.Array> {
}
val x: Map.Entry<Array<String>, java.sql.Array> = getEntry()
@@ -1,6 +1,5 @@
// "Specify Type Explicitly" "true"
import java.util.HashMap
import java.util.Map
fun foo(map : HashMap<String, Int>) {
for (<caret>entry : Map.Entry<String, Int> in map.entrySet()) {
@@ -1,4 +1,3 @@
// "Remove Explicitly Specified Type" "true"
import java.util.Map
val x = null
@@ -1,5 +1,5 @@
// "Specify Type Explicitly" "true"
fun getEntry() : java.util.Map.Entry<jet.Array<String>, java.sql.Array> {
fun getEntry() : Map.Entry<jet.Array<String>, java.sql.Array> {
}
val <caret>x = getEntry()
@@ -1,4 +1,3 @@
// "Remove Explicitly Specified Type" "true"
import java.util.Map
val x : Map.Entry<Stri<caret>ng, Int>? = null