Temporary disable local fun inlining (it's not supported now)

This commit is contained in:
Michael Bogdanov
2014-10-08 17:24:06 +04:00
parent ecb293bd6c
commit 4a078c1143
3 changed files with 17 additions and 1 deletions
@@ -0,0 +1,9 @@
fun box(): String {
val s = "OK"
[inline] fun localFun(): String {
return s
}
return localFun()
}