69cd729506
23 out of 156 tests (14.7%) are currently failing.
11 lines
152 B
Kotlin
Vendored
11 lines
152 B
Kotlin
Vendored
// IGNORE_BACKEND_FIR: JVM_IR
|
|
// FILE: A.java
|
|
|
|
public class A {
|
|
public final String field = "OK";
|
|
}
|
|
|
|
// FILE: 1.kt
|
|
|
|
fun box() = (A::field).get(A())
|