Files
kotlin-fork/compiler/testData/diagnostics/tests/scopes/kt1942.kt
T

20 lines
257 B
Kotlin
Vendored

//FILE:a/C.java
//KT-1942 Package local members from Java are visible in subclasses
package a;
public class C {
int myValue;
}
//FILE:d.kt
package d
import a.C
class A : C() {
fun test() {
val v = <!INVISIBLE_MEMBER!>myValue<!>
}
}