blob: 56dea58111035645646fb79828af688e7b8685ef [file] [log] [blame]
// FILE: test/D.java
package test;
public class D {
protected String field = "OK";
}
// FILE: 1.kt
import test.D
class A : D() {
fun a(): String {
return {field!!}()
}
}
fun box(): String {
return A().a()
}