Files
kotlin-fork/compiler/testData/diagnostics/tests/visibility/packagePrivateStatic.kt
T
2022-10-19 11:09:31 +00:00

24 lines
299 B
Kotlin
Vendored

// ISSUE: KT-54125
// FILE: foo/Base.java
package foo;
class Base {
protected static void foo() {}
}
// FILE: foo/Derived.java
package foo;
public class Derived extends Base {}
// FILE: main.kt
package bar
import foo.Derived
class Impl : Derived() {
fun test() {
foo()
}
}