mirror of
https://github.com/php/php-src.git
synced 2024-11-23 09:54:15 +08:00
18 lines
304 B
PHP
18 lines
304 B
PHP
--TEST--
|
|
Bug #78563: parsers should not be clonable
|
|
--EXTENSIONS--
|
|
xml
|
|
--FILE--
|
|
<?php
|
|
|
|
$parser = xml_parser_create();
|
|
clone $parser;
|
|
|
|
?>
|
|
===DONE===
|
|
--EXPECTF--
|
|
Fatal error: Uncaught Error: Trying to clone an uncloneable object of class XMLParser in %s:%d
|
|
Stack trace:
|
|
#0 {main}
|
|
thrown in %s on line %d
|