3b3fd0fa0d
The size has increased due to new implementation of KClass
15 lines
231 B
Kotlin
Vendored
15 lines
231 B
Kotlin
Vendored
// EXPECTED_REACHABLE_NODES: 1115
|
|
// MODULE: main(module1)
|
|
// FILE: main.kt
|
|
|
|
fun box(): String {
|
|
var module1 = bar()
|
|
assertEquals("bar", module1)
|
|
|
|
return "OK"
|
|
}
|
|
|
|
// MODULE: module1
|
|
// FILE: module1.kt
|
|
|
|
fun bar() = "bar" |