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