Fixed error with wrong parameter size calculation

This commit is contained in:
Michael Bogdanov
2015-10-01 11:25:13 +03:00
parent 466b20b0fc
commit 3806ad65fc
7 changed files with 81 additions and 1 deletions
@@ -0,0 +1,5 @@
package test
inline fun test(a: Int, b: Long, crossinline c: () -> String): String {
return { "${a}_${b}_${c()}"} ()
}