1
0
mirror of https://github.com/php/php-src.git synced 2026-03-28 18:22:42 +01:00
Files
archived-php-src/ext/spl/tests/bug72888.phpt
2016-08-19 11:28:36 +08:00

19 lines
336 B
PHP

--TEST--
Bug #72888 (Segfault on clone on splFileObject)
--FILE--
<?php
$x = new SplFileObject(__FILE__);
try {
$y=clone $x;
} catch (Error $e) {
var_dump($e->getMessage());
}
var_dump($y);
?>
--EXPECTF--
string(49) "An object of class SplFileObject cannot be cloned"
Notice: Undefined variable: y in %sbug72888.php on line %d
NULL