tests changes after collections mapping
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user