mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 15:53:37 +00:00
11 lines
148 B
Kotlin
Vendored
11 lines
148 B
Kotlin
Vendored
// IGNORE_BACKEND: JVM_IR
|
|
// FILE: A.java
|
|
|
|
public class A {
|
|
public final String field = "OK";
|
|
}
|
|
|
|
// FILE: 1.kt
|
|
|
|
fun box() = (A::field).get(A())
|