Proper param propagation in inline

This commit is contained in:
Michael Bogdanov
2015-09-30 14:23:38 +03:00
parent 79fce388b3
commit c83a5b8bd5
18 changed files with 409 additions and 193 deletions
@@ -0,0 +1,5 @@
package test
inline fun test(a: String, b: String, c: () -> String): String {
return a + b + c();
}