Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
quickfix
/
deprecatedSymbolUsage
/
publishedApi
/
simple.kt
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
)
}()
}
}