invalid_constant.gd 192 B

12345
  1. func test():
  2. var i = 12
  3. # Constants must be made of a constant, deterministic expression.
  4. # A constant that depends on a variable's value is not a constant expression.
  5. const TEST = 13 + i