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

13 lines
228 B
Kotlin
Vendored

// "Replace with generated @PublishedApi bridge call '`access$prop`'" "true"
annotation class Z
open class ABase {
@Z
protected val prop = 1
inline fun test() {
{
<caret>prop
}()
}
}