Files
kotlin-fork/idea/testData/intentions/usePropertyAccessSyntax/conflict2.kt
T

9 lines
160 B
Kotlin
Vendored

// WITH_RUNTIME
// IS_APPLICABLE: false
import java.io.File
val File.absolutePath: String get() = ""
fun foo(file: File) {
file.getAbsolutePath()<caret>
}