9ed73439f8
`generateMethodNode` should not have any side effects for the output to be stable under incremental compilation.
8 lines
81 B
Kotlin
Vendored
8 lines
81 B
Kotlin
Vendored
package inline1
|
|
|
|
import inline2.*
|
|
|
|
fun g() = h()
|
|
|
|
inline fun h() = root { "OK" }
|