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