c2598faa4e
ExpressionTypingContext now has a scope for visibility checking, which isn't replaced on replaceScope()
10 lines
117 B
Kotlin
10 lines
117 B
Kotlin
// FILE: 1.kt
|
|
package a
|
|
|
|
private enum class E { ENTRY }
|
|
|
|
// FILE: 2.kt
|
|
package b
|
|
|
|
val e = a.<!INVISIBLE_MEMBER!>E<!>
|