blob: 24978236abdd56a9886f8b28a7e7093f8ce4c454 [file] [log] [blame]
// IS_APPLICABLE: false
inline fun <T, R> T.let(block: (T) -> R): R = block(this)
fun foo(arg: Any?): Any? {
return arg?.let {
<caret>x -> x.toString().let { x }
}
}