360a5bf348
#KT-39705 Fixed #KT-19459 Fixed
11 lines
143 B
Kotlin
Vendored
11 lines
143 B
Kotlin
Vendored
private class A {
|
|
val bar = 1
|
|
fun <caret>foooo() {
|
|
{ this.bar }()
|
|
bar
|
|
}
|
|
}
|
|
|
|
private fun test(a: A) {
|
|
a.foooo()
|
|
} |