Files
kotlin-fork/idea/testData/inspectionsLocal/convertPairConstructorToToFunction/simple.kt
T
2018-03-07 15:40:19 +03:00

5 lines
83 B
Kotlin
Vendored

// WITH_RUNTIME
import kotlin.Pair
fun test() {
val p = <caret>Pair(1, "foo")
}