Adedd quickfix check if @PublishedApi stub already exists
This commit is contained in:
+18
@@ -0,0 +1,18 @@
|
||||
// "Replace with generated @PublishedApi bridge call '`access$prop`'" "true"
|
||||
|
||||
open class ABase {
|
||||
protected var prop = 1
|
||||
|
||||
inline fun test() {
|
||||
{
|
||||
<caret>prop
|
||||
}()
|
||||
}
|
||||
|
||||
@PublishedApi
|
||||
internal var `access$prop`: Int
|
||||
get() = prop
|
||||
set(value) {
|
||||
prop = value
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user