22 lines
388 B
Plaintext
Vendored
22 lines
388 B
Plaintext
Vendored
// "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() {
|
|
{
|
|
`access$test`(param())
|
|
}()
|
|
}
|
|
|
|
@PublishedApi
|
|
internal fun `access$test`(p: String) = test(p)
|
|
} |