blob: ecfe92eb63cbdb3db0e96e45490aee7bdc6962df [file] [log] [blame]
// "Wrap with '?.let { ... }' call" "true"
// WITH_RUNTIME
fun f(s: String, action: (String.() -> Unit)?) {
s.action<caret>()
}