[FIR] Fix effective visibility handling for local members
In future 'Local' effective visibility could be used as a flag of local declaration
This commit is contained in:
+2
-2
@@ -1,11 +1,11 @@
|
||||
FILE: foo.kt
|
||||
public final fun foo(): R|kotlin/Boolean| {
|
||||
object : R|Node<kotlin/Boolean>| {
|
||||
private constructor(): R|anonymous| {
|
||||
private[local] constructor(): R|anonymous| {
|
||||
super<R|kotlin/Any|>()
|
||||
}
|
||||
|
||||
private final var result: R|kotlin/Boolean| = Boolean(false)
|
||||
private[local] final var result: R|kotlin/Boolean| = Boolean(false)
|
||||
private get(): R|kotlin/Boolean|
|
||||
private set(value: R|kotlin/Boolean|): R|kotlin/Unit|
|
||||
|
||||
|
||||
Reference in New Issue
Block a user