5c2ad48375
#KT-14240 Fixed
8 lines
146 B
Kotlin
Vendored
8 lines
146 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
class Foo(var bar: Int)
|
|
|
|
fun test() {
|
|
val foo = Foo(1)
|
|
println(foo.bar)
|
|
<selection>foo.bar</selection> = foo.bar + 1
|
|
} |