Files
kotlin-fork/idea/testData/quickfix/deprecatedSymbolUsage/publishedApi/simple.kt.after
T
2016-12-09 11:55:16 +01:00

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)
}