mirror of
https://github.com/php/php-src.git
synced 2024-11-25 02:44:58 +08:00
14 lines
253 B
PHP
Executable File
14 lines
253 B
PHP
Executable File
--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
|