Files
kotlin-fork/idea/testData/intentions/deprecatedCallableAddReplaceWith/ValProperty.kt.after
T
2015-09-04 18:19:31 +03:00

8 lines
124 B
Plaintext
Vendored

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