// FIR_IDENTICAL // !DIAGNOSTICS: -UNUSED_PARAMETER inline fun bar(x: T1, y: T2): T2 = y inline fun foo(z: R): R = bar(1, z) fun box() { foo("abc") }