401f0ac583
"// TARGET_BACKEND: JVM" more clearly says that the test is JVM-specific, rather than DONT_TARGET_EXACT_BACKEND which excludes all other backends.
25 lines
406 B
Kotlin
Vendored
25 lines
406 B
Kotlin
Vendored
// TARGET_BACKEND: JVM
|
|
// MODULE: lib
|
|
// FILE: protectedPack/A.java
|
|
package protectedPack;
|
|
|
|
public class A {
|
|
protected final String field;
|
|
|
|
public A(String value) {
|
|
field = value;
|
|
}
|
|
}
|
|
|
|
// MODULE: main(lib)
|
|
// FILE: B.kt
|
|
import protectedPack.A
|
|
|
|
class B(value: String) : A(value) {
|
|
inner class C : A(field) {
|
|
val result = field
|
|
}
|
|
}
|
|
|
|
fun box(): String = B("OK").C().result
|