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

13 lines
176 B
Kotlin
Vendored

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