9ed73439f8
`generateMethodNode` should not have any side effects for the output to be stable under incremental compilation.
6 lines
101 B
Kotlin
Vendored
6 lines
101 B
Kotlin
Vendored
package inline2
|
|
|
|
inline fun root(crossinline x: () -> String) = object {
|
|
fun run() = x()
|
|
}.run()
|