redefine_class_constant.gd 150 B

1234567
  1. # See also `parser-warnings/shadowed-constant.gd`.
  2. const TEST = 25
  3. func test():
  4. # Error here (trying to set a new value to a constant).
  5. TEST = 50