// skip: Variables should not be in scope in their initializer.
{
var a = "outer"
var a = a + " inner"
IO.print(a) // expect: outer inner
}