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

8 lines
109 B
Kotlin
Vendored

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