e4e09d6c70
Added FakeCallableDescriptorForObject to make a resolved call with object as variable in 'variable as function call' #KT-4321 Fixed #KT-4863 Fixed
7 lines
93 B
Kotlin
7 lines
93 B
Kotlin
class A {
|
|
class object {
|
|
fun invoke(i: Int) = i
|
|
}
|
|
}
|
|
|
|
fun test() = <caret>A(1) |