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