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

8 lines
109 B
Kotlin
Vendored

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