php-src/ext/spl/tests/bug72888.phpt

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