summaryrefslogtreecommitdiff
path: root/Zend/tests/bug32428.phpt
blob: 0b5ca6aebcf18cbc1ab5235e4655d089d7193253 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
--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