Files
pyos 9ed73439f8 JVM_IR: delay writes to the source map until generateMethod
`generateMethodNode` should not have any side effects for the output to
be stable under incremental compilation.
2020-04-08 07:04:16 +02:00

6 lines
101 B
Kotlin
Vendored

package inline2
inline fun root(crossinline x: () -> String) = object {
fun run() = x()
}.run()