mirror of
https://github.com/php/php-src.git
synced 2024-11-25 10:54:15 +08:00
10 lines
126 B
PHP
Executable File
10 lines
126 B
PHP
Executable File
--TEST--
|
|
Bug #41401 (wrong precedence for unary minus)
|
|
--FILE--
|
|
<?php
|
|
echo 1/-2*5;
|
|
echo "\n";
|
|
echo 6/+2*-3;
|
|
--EXPECT--
|
|
-2.5
|
|
-9 |