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