summaryrefslogtreecommitdiff
path: root/Zend/tests/bug32428.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/bug32428.phpt')
-rw-r--r--Zend/tests/bug32428.phpt12
1 files changed, 6 insertions, 6 deletions
diff --git a/Zend/tests/bug32428.phpt b/Zend/tests/bug32428.phpt
index e75148fec1..7c1b298e06 100644
--- a/Zend/tests/bug32428.phpt
+++ b/Zend/tests/bug32428.phpt
@@ -1,12 +1,12 @@
--TEST--
Bug #32428 (The @ warning error suppression operator is broken)
--FILE--
-<?php
- $data = @$not_exists;
- $data = @($not_exists);
- $data = @!$not_exists;
- $data = !@$not_exists;
- $data = @($not_exists+1);
+<?php
+ $data = @$not_exists;
+ $data = @($not_exists);
+ $data = @!$not_exists;
+ $data = !@$not_exists;
+ $data = @($not_exists+1);
echo "ok\n";
?>
--EXPECT--