mirror of
https://github.com/php/php-src.git
synced 2025-01-12 05:54:13 +08:00
11 lines
285 B
PHP
11 lines
285 B
PHP
--TEST--
|
|
Bug #77660 (Segmentation fault on break 2147483648)
|
|
--SKIPIF--
|
|
<?php if (PHP_INT_SIZE != 8) die("skip this test is for 64bit platform only"); ?>
|
|
--FILE--
|
|
<?php
|
|
for(;;) break 2147483648;
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Cannot 'break' 2147483648 levels in %sbug77660.php on line %d
|