e4e09d6c70
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) |