Files
kotlin-fork/idea/testData/quickfix/deprecatedSymbolUsage/propertyToMethod.kt
T
2015-09-04 18:19:31 +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
}