ternary_associativity_3.phpt 223 B

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