510b9e6f2a
In tests merged from boxAgainstJava in 29b96aa1, some directories were
named slightly differently compared to box, e.g. "property" vs
"properties", "varargs" vs "vararg". This change renames these, moves
some of the tests to more fitting directories, and also renames
"visibility" to "javaVisibility" because it's about Java visibilities
specifically.
25 lines
296 B
Kotlin
Vendored
25 lines
296 B
Kotlin
Vendored
// TARGET_BACKEND: JVM
|
|
// MODULE: lib
|
|
// FILE: test/D.java
|
|
|
|
package test;
|
|
|
|
public class D {
|
|
protected String field = "OK";
|
|
}
|
|
|
|
// MODULE: main(lib)
|
|
// FILE: 1.kt
|
|
|
|
import test.D
|
|
|
|
class A : D() {
|
|
fun a(): String {
|
|
return {field!!}()
|
|
}
|
|
}
|
|
|
|
fun box(): String {
|
|
return A().a()
|
|
}
|