1a26d2e157
#KT-37541 Fixed
12 lines
348 B
Kotlin
Vendored
12 lines
348 B
Kotlin
Vendored
fun interface IsolatedFunFace {
|
|
}
|
|
|
|
typealias FunAlias = IsolatedFunFace
|
|
|
|
fun referIsolatedFunFace(iff: IsolatedFunFace) {}
|
|
|
|
fun callIsolatedFunFace() {
|
|
referIsolatedFunFace(<!UNRESOLVED_REFERENCE!>IsolatedFunFace<!> {})
|
|
referIsolatedFunFace(<!UNRESOLVED_REFERENCE!>FunAlias<!> {})
|
|
<!INAPPLICABLE_CANDIDATE!>referIsolatedFunFace<!>({})
|
|
} |