53b8a1d56e
#KT-7544 Fixed
7 lines
226 B
Kotlin
Vendored
7 lines
226 B
Kotlin
Vendored
package test
|
|
|
|
inline fun bar(inlineOptions(InlineOption.ONLY_LOCAL_RETURN) y: () -> String) = {
|
|
{ { call(y) }() }()
|
|
}
|
|
|
|
public inline fun <T> call(inlineOptions(InlineOption.ONLY_LOCAL_RETURN) f: () -> T): T = {{ f() }()}() |