Files
kotlin-fork/idea/testData/quickfix/increaseVisibility/privateSetterToInternal.kt.after
T
2019-10-21 15:55:04 +07:00

12 lines
207 B
Plaintext
Vendored

// "Make '<set-attribute>' internal" "true"
// ACTION: "Make '<set-attribute>' public"
class Demo {
var attribute = "a"
internal set
}
fun main() {
val c = Demo()
c.attribute = "test"
}