confusable_local_declaration.gd 67 B

1234567
  1. func test():
  2. if true:
  3. var a = 1
  4. print(a)
  5. var a = 2
  6. print(a)