20 lines
392 B
Plaintext
Vendored
20 lines
392 B
Plaintext
Vendored
// "Replace with generated @PublishedApi bridge call '`access$test`(...)'" "true"
|
|
annotation class Z
|
|
|
|
open class ABase {
|
|
@Z
|
|
protected fun <T> test(p: T): T {
|
|
null!!
|
|
}
|
|
|
|
|
|
inline fun test() {
|
|
{
|
|
//TODO remove generic
|
|
`access$test`<String>("123")
|
|
}()
|
|
}
|
|
|
|
@PublishedApi
|
|
internal fun <T> `access$test`(p: String) = test(p)
|
|
} |