1--TEST--
2Forbidden nested ternary, case 1
3--FILE--
4<?php
5
61 ? 2 : 3 ? 4 : 5;
7
8?>
9--EXPECTF--
10Fatal 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
11