Files
kotlin-fork/idea/testData/quickfix/deprecatedSymbolUsage/propertyToSyntheticExtension.kt
T
2017-05-26 16:37:35 +03:00

12 lines
208 B
Kotlin
Vendored

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