ternary_associativity_1.phpt 235 B

12345678910
  1. --TEST--
  2. Forbidden nested ternary, case 1
  3. --FILE--
  4. <?php
  5. 1 ? 2 : 3 ? 4 : 5;
  6. ?>
  7. --EXPECTF--
  8. Fatal error: Unparenthesized `a ? b : c ? d : e` is not supported. Use either `(a ? b : c) ? d : e` or `a ? b : (c ? d : e)` in %s on line %d