Files
kotlin-fork/idea/testData/intentions/usePropertyAccessSyntax/setAsExpressionBodyProperty.kt.after
T
2016-01-11 18:53:07 +01:00

7 lines
111 B
Plaintext
Vendored

// WITH_RUNTIME
var Thread.otherName: String
get() = getName()
set(value) {
name = value
}