mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 08:31:28 +00:00
10 lines
190 B
Kotlin
Vendored
10 lines
190 B
Kotlin
Vendored
// "Make '<set-prop>' internal" "true"
|
|
// ACTION: Make '<set-prop>' public
|
|
// ERROR: Cannot assign to 'prop': the setter is private in file
|
|
|
|
package test
|
|
|
|
fun foo() {
|
|
<caret>prop = 20
|
|
}
|