cd73d17bd4
#KT-15311 fixed
10 lines
192 B
Plaintext
Vendored
10 lines
192 B
Plaintext
Vendored
import java.util.ArrayList
|
|
|
|
// INTENTION_TEXT: "Add import for 'java.util.ArrayList'"
|
|
// WITH_RUNTIME
|
|
|
|
fun test() {
|
|
val myList = ArrayList<Int>()
|
|
val otherList = ArrayList<String>()
|
|
}
|