No, with takes a receiver function. ```with(listOf...
# getting-started
k
No, with takes a receiver function.
Copy code
with(listOf(1,2)) {
    val (a, b) = this
}
does work.