8 lines
124 B
Plaintext
Vendored
8 lines
124 B
Plaintext
Vendored
class C {
|
|
@deprecated("", ReplaceWith("bar()"))
|
|
val foo: String
|
|
get() = bar()
|
|
|
|
fun bar(): String = ""
|
|
}
|