Skip inline lambdas in 'InlineCallSite' parameter calculation; Fix for KT-10679: Wrong outer after inline

#KT-10679 Fixed
This commit is contained in:
Michael Bogdanov
2016-01-15 15:13:47 +03:00
parent abf4a5cf43
commit 7eec1d8e1d
9 changed files with 130 additions and 6 deletions
@@ -0,0 +1,5 @@
package test
inline fun <R> call(s: () -> R) = s()
inline fun test(crossinline z: () -> String) = { z() }