Files
kotlin-fork/idea/testData/quickfix/deprecatedSymbolUsage/propertyToMethod.kt
T
2015-09-22 15:00:24 +02:00

13 lines
185 B
Kotlin
Vendored

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