Files
kotlin-fork/idea/testData/intentions/deprecatedCallableAddReplaceWith/ValProperty.kt.after
T
2015-05-27 16:15:50 +03:00

8 lines
124 B
Plaintext
Vendored

class C {
@deprecated("", ReplaceWith("bar()"))
val foo: String
get() = bar()
fun bar(): String = ""
}