6 lines
110 B
Kotlin
Vendored
6 lines
110 B
Kotlin
Vendored
class Foo {
|
|
var foo: String = ""
|
|
@Deprecated("") <caret>set(x) {
|
|
field = x
|
|
}
|
|
} |