Fix exception during resolution of incorrect fun interface
#KT-37541 Fixed
This commit is contained in:
Vendored
+12
@@ -0,0 +1,12 @@
|
||||
fun interface IsolatedFunFace {
|
||||
}
|
||||
|
||||
typealias FunAlias = IsolatedFunFace
|
||||
|
||||
fun referIsolatedFunFace(iff: IsolatedFunFace) {}
|
||||
|
||||
fun callIsolatedFunFace() {
|
||||
referIsolatedFunFace(<!UNRESOLVED_REFERENCE!>IsolatedFunFace<!> {})
|
||||
referIsolatedFunFace(<!UNRESOLVED_REFERENCE!>FunAlias<!> {})
|
||||
<!INAPPLICABLE_CANDIDATE!>referIsolatedFunFace<!>({})
|
||||
}
|
||||
Reference in New Issue
Block a user