bug32428.phpt   [plain text]


--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