assert_always_true.gd 140 B

123456
  1. func test():
  2. # These statements always evaluate to `true`, and therefore emit a warning.
  3. assert(true)
  4. assert(-1.234)
  5. assert(2 + 3 == 5)