FILE: callableReferencesAndDefaultParameters.kt public final class A : R|kotlin/Any| { public constructor(): R|A| { super() } public final fun foo(s: R|kotlin/String|, flag: R|kotlin/Boolean| = Boolean(true)): R|kotlin/Unit| { } } public final inline fun R|T|.myLet(block: R|(T) -> kotlin/Unit|): R|kotlin/Unit| { } public final fun test(a: R|A|, s: R|kotlin/String|): R|kotlin/Unit| { R|/s|.R|/myLet|(R|/a|::R|/A.foo|) }