Files
kotlin-fork/idea/testData/refactoring/inline/function/ReferenceToCompanionInsideLambda.kt
T
Dmitry Gridin 360a5bf348 Inline refactoring: improve resolve
#KT-39705 Fixed
#KT-19459 Fixed
2020-06-23 10:25:52 +00:00

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()
}