360a5bf348
#KT-39705 Fixed #KT-19459 Fixed
13 lines
166 B
Kotlin
Vendored
13 lines
166 B
Kotlin
Vendored
private class A {
|
|
fun <caret>foooo() {
|
|
{ bar }()
|
|
}
|
|
|
|
companion object {
|
|
const val bar = 4
|
|
}
|
|
}
|
|
|
|
private fun test(a: A) {
|
|
a.foooo()
|
|
} |