Support properties in @PublishedApi bridge quickfix
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
// "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
|
||||
}()
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user