f950a0246c
Kotlin default import inserter was unable to correctly insert such imports #KT-34165 fixed
9 lines
134 B
Kotlin
Vendored
9 lines
134 B
Kotlin
Vendored
package test
|
|
|
|
import java.util.ArrayList
|
|
|
|
internal class User {
|
|
fun main() {
|
|
val list: List<*> = ArrayList<Any?>()
|
|
}
|
|
} |