c7d8ab8219
#KT-5179 Fixed
9 lines
133 B
Kotlin
9 lines
133 B
Kotlin
// PARAM_TYPES: A
|
|
class A {
|
|
fun invoke() = 20
|
|
}
|
|
// SIBLING:
|
|
fun testProp() {
|
|
val foo = A()
|
|
<selection>foo()</selection>
|
|
} |