3b3fd0fa0d
The size has increased due to new implementation of KClass
12 lines
160 B
Kotlin
Vendored
12 lines
160 B
Kotlin
Vendored
// EXPECTED_REACHABLE_NODES: 1112
|
|
package foo
|
|
|
|
interface A {
|
|
companion object {
|
|
val OK: String = "OK"
|
|
}
|
|
}
|
|
|
|
fun box(): String {
|
|
return A.OK
|
|
} |