9ccb1fd506
Chose maximally specific function in callable reference #KT-9601 Fixed #KT-10103 Fixed
13 lines
170 B
Kotlin
Vendored
13 lines
170 B
Kotlin
Vendored
// !CHECK_TYPE
|
|
|
|
interface IA
|
|
interface IB : IA
|
|
|
|
fun IA.extFun() {}
|
|
fun IB.extFun() {}
|
|
|
|
fun test() {
|
|
val extFun = IB::extFun
|
|
checkSubtype<IB.() -> Unit>(extFun)
|
|
}
|