mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 08:31:35 +00:00
Added FakeCallableDescriptorForObject to make a resolved call with object as variable in 'variable as function call' #KT-4321 Fixed #KT-4863 Fixed
5 lines
65 B
Kotlin
Vendored
5 lines
65 B
Kotlin
Vendored
object A {
|
|
fun invoke(i: Int) = i
|
|
}
|
|
|
|
fun test() = A<caret>(1) |