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

8 lines
109 B
Kotlin

class C {
<caret>@deprecated("")
val foo: String
get() = bar()
fun bar(): String = ""
}