// IS_APPLICABLE: false inline fun T.let(block: (T) -> R): R = block(this) fun foo(arg: Any?): Int? { return arg?.let { x -> x.toString().let { x.hashCode() + it.hashCode() } } }