9 lines
154 B
Kotlin
Vendored
9 lines
154 B
Kotlin
Vendored
// "Make <set-prop> internal" "true"
|
|
// ERROR: Cannot assign to 'prop': the setter is 'private' in file
|
|
|
|
package test
|
|
|
|
fun foo() {
|
|
<caret>prop = 20
|
|
}
|