var_in_while.gravity 159 B

1234567891011
  1. #unittest {
  2. name: "Test variable declaration in while loop statement.";
  3. error: SYNTAX;
  4. error_row: 9;
  5. error_col: 9;
  6. };
  7. func main() {
  8. while (var a) {
  9. };
  10. }