shadowed_constant.gd 244 B

123456789
  1. # See also `parser-errors/redefine-class-constant.gd`.
  2. const TEST = 25
  3. func test():
  4. # Warning here. This is not an error because a new constant is created,
  5. # rather than attempting to set the value of an existing constant.
  6. const TEST = 50