Files
kotlin-fork/idea/testData/quickfix/deprecatedSymbolUsage/propertyToSyntheticExtension.kt.after
T

12 lines
201 B
Plaintext
Vendored

// "Replace with 'absolutePath'" "true"
import java.io.File
@deprecated("", ReplaceWith("absolutePath"))
val File.prop: String
get() = absolutePath
fun foo(file: File) {
file.absolutePath
}