Files
kotlin-fork/idea/testData/inspectionsLocal/usePropertyAccessSyntax/caretOnValueArgumentList.kt
T
2019-04-22 16:19:37 +07:00

7 lines
111 B
Kotlin
Vendored

// PROBLEM: none
// WITH_RUNTIME
import java.io.File
fun foo(file: File) {
file.getAbsolutePath(<caret>)
}