TypePHP 编译器
https://swoole.com/aot/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
328 B
21 lines
328 B
--TEST--
|
|
Decimal unary minus operator
|
|
--FILE--
|
|
<?php
|
|
declare(strict_types=1);
|
|
use native_types;
|
|
|
|
function main(): void {
|
|
$a = std::decimal("123.456");
|
|
|
|
// Unary minus
|
|
$b = -$a;
|
|
echo $b->toString(); echo "\n";
|
|
// Double minus
|
|
$c = -$b;
|
|
echo $c->toString(); echo "\n";
|
|
}
|
|
?>
|
|
--EXPECT--
|
|
-123.456
|
|
123.456
|
|
|