Files
kotlin-fork/compiler/testData/codegen/boxInline/innerClasses/innerLambda.2.kt
T
2016-01-13 19:41:59 +03:00

18 lines
194 B
Kotlin
Vendored

package test
inline fun foo1() = run {
{
"OK"
}
}
var sideEffects = "fail"
inline fun foo2() = run {
{
Runnable {
sideEffects = "OK"
}
}
}