mirror of
https://github.com/php/php-src.git
synced 2024-12-19 23:11:42 +08:00
02e4d7a290
* pull-request/341: (23 commits) typofixes
14 lines
254 B
PHP
14 lines
254 B
PHP
--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);
|
|
echo "ok\n";
|
|
?>
|
|
--EXPECT--
|
|
ok
|