// FIR_IDENTICAL // !DIAGNOSTICS: -UNUSED_PARAMETER // Issue: KT-39633 interface Proxy class A(val left: E) : Proxy abstract class Api { abstract fun magic(): T inline fun match(proxy: Proxy): A = magic() inline fun f(x: B): B = g(x) inline fun g(x: C) = match(A(x)) }