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

16 lines
283 B
Kotlin
Vendored

// "Replace with generated @PublishedApi bridge call '`access$prop`'" "true"
annotation class Z
open class ABase {
@Z
protected var String.prop: Int
get() = 1
set(field) {}
inline fun test() {
{
"123".<caret>prop
}()
}
}