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

20 lines
362 B
Plaintext
Vendored

// "Replace with generated @PublishedApi bridge call '`access$prop`'" "true"
annotation class Z
open class ABase {
@Z
protected var prop = 1
inline fun test() {
{
`access$prop`
}()
}
@PublishedApi
internal var `access$prop`: Int
get() = prop
set(value) {
prop = value
}
}