Duplicate names

Object names in the same file must be unique, even across different scopes, to avoid confusion.

Incorrect:

[] > foo
  [] > a1
    42 > bar
  [] > a2
    33 > bar

Correct:

[] > foo
  [] > a1
    42 > bar
  [] > a2
    33 > klub

Published on Fri Sep 12 07:14:05 UTC 2025.