you can also use `run` to create a temporary scope...
# getting-started
a
you can also use
run
to create a temporary scope in a test in same method:
Copy code
run {
    // some isolated test with local variables  
   val a = ...
}

run {
   // some isoalted test with duplicate variables
   val a =  ...
}