19 lines
361 B
PHP
19 lines
361 B
PHP
--TEST--
|
|
Bug GH-8778 (Integer arithmethic with large number variants fails)
|
|
--SKIPIF--
|
|
<?php
|
|
if (!extension_loaded("com_dotnet")) die("skip com_dotnet extension not available");
|
|
if (PHP_INT_SIZE < 8) die("skip for 64bit only");
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
$int = 0x100000000;
|
|
var_dump(
|
|
$int,
|
|
new variant($int) + 1
|
|
);
|
|
?>
|
|
--EXPECT--
|
|
int(4294967296)
|
|
int(4294967297)
|