KT-14839 Do not coerce after remapped variable store.

This commit is contained in:
Dmitry Petrov
2016-11-17 16:42:21 +03:00
parent 4b23c50bf8
commit 8b99141030
7 changed files with 46 additions and 5 deletions
@@ -0,0 +1,10 @@
fun box(): String {
try {
} catch (e: Exception) {
inlineFunctionWithDefaultArguments(e)
}
return "OK"
}
inline fun inlineFunctionWithDefaultArguments(t: Throwable? = null, bug: Boolean = true) =
Unit