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

19 lines
342 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(60) "Trying to clone an uncloneable object of class SplFileObject"
Warning: Undefined variable $y in %s on line %d
NULL