Files
kotlin-fork/idea/testData/quickfix/deprecatedSymbolUsage/publishedApi/existingStub.kt
T
2016-12-20 09:42:14 +01:00

16 lines
291 B
Kotlin
Vendored

// "Replace with generated @PublishedApi bridge call '`access$test`(...)'" "true"
open class ABase {
protected fun test(p: Int) {
}
inline fun test() {
{
<caret>test(1)
}()
}
@PublishedApi
internal fun `access$test`(p: Int) = test(p)
}