blob: bfda7a40b043c6c2430d6d65626a69da2a197a43 [file]
// TODO: muted automatically, investigate should it be ran for JS or not
// IGNORE_BACKEND: JS
// FILE: JavaClass.java
public class JavaClass {
protected String FIELD = "OK";
}
// FILE: Kotlin.kt
package test
import JavaClass
class B : JavaClass() {
inline fun bar() = FIELD
}
fun box() = B().bar()