88a5eb24d5
So #KT-24385 Fixed
9 lines
132 B
Kotlin
Vendored
9 lines
132 B
Kotlin
Vendored
class C {
|
|
companion object {
|
|
fun foo(s: String) = 1
|
|
}
|
|
}
|
|
|
|
class Test {
|
|
val f = {<caret> s: String -> C.foo(s) }
|
|
} |