Files
kotlin-fork/idea/testData/quickfix/deprecatedSymbolUsage/propertyToMethod.kt
T
2015-05-27 16:15:45 +03:00

13 lines
181 B
Kotlin
Vendored

// "Replace with 'getX()'" "true"
trait X {
@deprecated("", ReplaceWith("getX()"))
val x: String
fun getX(): String
}
fun foo(x: X): String {
return x.<caret>x
}