Don't recognize nullable function types as inlinable

#KT-19679 Fixed
This commit is contained in:
Mikhael Bogdanov
2017-08-16 12:51:28 +02:00
parent 1b2e28d467
commit 79ecc7fd5c
17 changed files with 177 additions and 15 deletions
@@ -0,0 +1,15 @@
// FILE: 1.kt
package test
inline fun build(noinline pathFunc: (() -> String)? = null) {
pathFunc?.invoke()
}
// FILE: 2.kt
import test.*
fun box(): String {
build ()
return "OK"
}