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