comma-expression.azsl 247 B

12345678910
  1. void f()
  2. {
  3. (a, b, c, d); // comma expression inside parenthesized expression
  4. a, b, c, d; // straight comma expr
  5. if (stuff(), a);
  6. for (int a = 4, b = 5;
  7. call(), a < 7;
  8. ++a, ++b) {}
  9. half a, b = 3 + (4,6), c;
  10. }