FIR: fix invoke lookup for SAM resolution

This commit is contained in:
Jinseong Jeon
2020-12-10 15:05:47 -08:00
committed by TeamCityServer
parent 3bca6ae893
commit 7df289746c
2 changed files with 31 additions and 3 deletions
@@ -16,7 +16,7 @@ public interface MyListener<F extends MyFuture<?>> {
typealias Handler = (cause: Throwable?) -> Unit
fun <T> MyFuture<T>.setup() {
<!INAPPLICABLE_CANDIDATE!>addListener<!>(ListenerImpl<T, MyFuture<T>>())
addListener(ListenerImpl<T, MyFuture<T>>())
addListener { }
}