Use `run`. It's inlined, so it fulfills the same p...
# announcements
r
Use
run
. It's inlined, so it fulfills the same purpose
Copy code
@Test
fun test() {
    run {
        val foo = //...
    }
    run {
        val foo = // .. something new
    }
}