blob: 7a9c7e66787d127242b7009c82d23d1fe235f905 [file] [log] [blame]
// "Replace with generated @PublishedApi bridge call '`access$test`(...)'" "true"
annotation class Z
open class ABase {
@Z
protected fun test(p: Int) {
}
inline fun test() {
{
<caret>test(1)
}()
}
}