8 lines
149 B
Kotlin
Vendored
8 lines
149 B
Kotlin
Vendored
// PROBLEM: none
|
|
class Foo {
|
|
var foo: String = ""
|
|
@Deprecated("") <caret>set(foo) {
|
|
1 + 2
|
|
field = foo
|
|
}
|
|
} |