mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-14 15:53:36 +00:00
9 lines
118 B
Kotlin
Vendored
9 lines
118 B
Kotlin
Vendored
// SIBLING:
|
|
class A {
|
|
var t = 1
|
|
private set
|
|
|
|
fun test() {
|
|
<selection>t = 5</selection>
|
|
}
|
|
} |