// "Replace with generated @PublishedApi bridge call '`access$test`(...)'" "true" open class ABase { protected fun test(p: T) { } fun param(): T { return null!! } } open class A : ABase() { inline fun test() { { test(param()) }() } }