3b3fd0fa0d
The size has increased due to new implementation of KClass
10 lines
195 B
Kotlin
Vendored
10 lines
195 B
Kotlin
Vendored
// EXPECTED_REACHABLE_NODES: 1110
|
|
// MODULE: lib
|
|
// FILE: lib.kt
|
|
internal fun bar() = "OK"
|
|
|
|
internal inline fun foo() = bar()
|
|
|
|
// MODULE: main(lib)(lib)
|
|
// FILE: main.kt
|
|
fun box(): String = foo() |