
| Path : /usr/src/php/Zend/tests/ |
| Current File : //usr/src/php/Zend/tests/bug32428.phpt |
--TEST-- Bug #32428 (The @ warning error supression operator is broken) --FILE-- <?php $data = @$not_exists; $data = @($not_exists); $data = @!$not_exists; $data = !@$not_exists; $data = @($not_exists+1); echo "ok\n"; ?> --EXPECT-- ok