Files
kotlin-fork/idea/testData/quickfix/deprecatedSymbolUsage/propertyToSyntheticExtension.kt
T
2015-09-04 18:19:31 +03:00

12 lines
200 B
Kotlin
Vendored

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