13 lines
401 B
Kotlin
Vendored
13 lines
401 B
Kotlin
Vendored
<!FUN_INTERFACE_WRONG_COUNT_OF_ABSTRACT_MEMBERS!>fun<!> interface IsolatedFunFace {
|
|
}
|
|
|
|
typealias FunAlias = IsolatedFunFace
|
|
|
|
fun referIsolatedFunFace(iff: IsolatedFunFace) {}
|
|
|
|
fun callIsolatedFunFace() {
|
|
referIsolatedFunFace(<!UNRESOLVED_REFERENCE!>IsolatedFunFace<!> {})
|
|
referIsolatedFunFace(<!UNRESOLVED_REFERENCE!>FunAlias<!> {})
|
|
referIsolatedFunFace(<!ARGUMENT_TYPE_MISMATCH!>{}<!>)
|
|
}
|