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