18 lines
319 B
Plaintext
Vendored
18 lines
319 B
Plaintext
Vendored
// "Replace with generated @PublishedApi bridge call '`access$test`(...)'" "true"
|
|
annotation class Z
|
|
|
|
open class ABase {
|
|
@Z
|
|
protected fun test(p: Int) {
|
|
}
|
|
|
|
|
|
inline fun test() {
|
|
{
|
|
`access$test`(1)
|
|
}()
|
|
}
|
|
|
|
@PublishedApi
|
|
internal fun `access$test`(p: Int) = test(p)
|
|
} |