27eea882fb
#KT-33796 Fixed
12 lines
213 B
Kotlin
Vendored
12 lines
213 B
Kotlin
Vendored
// "Make '<set-attribute>' internal" "true"
|
|
// ACTION: "Make '<set-attribute>' public"
|
|
|
|
class Demo {
|
|
var attribute = "a"
|
|
private set
|
|
}
|
|
|
|
fun main() {
|
|
val c = Demo()
|
|
<caret>c.attribute = "test"
|
|
} |