c7d8ab8219
#KT-5179 Fixed
13 lines
146 B
Plaintext
13 lines
146 B
Plaintext
// PARAM_TYPES: A
|
|
class A {
|
|
fun invoke() = 20
|
|
}
|
|
// SIBLING:
|
|
fun testProp() {
|
|
val foo = A()
|
|
unit(foo)
|
|
}
|
|
|
|
fun unit(foo: A) {
|
|
foo()
|
|
} |