blob: 551451d8119b98b7e1ec1fefd2b10cee91d90538 [file] [log] [blame]
// "Replace with generated @PublishedApi bridge call '`access$test`(...)'" "true"
annotation class Z
open class ABase<T> {
@Z
protected fun test(p: T) {
}
fun param(): T {
return null!!
}
inline fun test() {
{
<caret>test(param())
}()
}
}