mirror of
https://github.com/php/php-src.git
synced 2026-04-30 03:33:17 +02:00
c9f27ee422
TypeException stays as-is for now because it uses messages that are incompatible with the way exception messages are displayed. closure_038.phpt and a few others now show that we're generating too many exceptions for compound operations on undefined properties -- this needs to be fixed in a followup.
19 lines
453 B
PHP
19 lines
453 B
PHP
--TEST--
|
|
Reflection class can not be cloned
|
|
--CREDITS--
|
|
Stefan Koopmanschap <stefan@phpgg.nl>
|
|
TestFest PHP|Tek
|
|
--SKIPIF--
|
|
<?php
|
|
if (!extension_loaded('reflection)) print 'skip';
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
$rc = new ReflectionClass("stdClass");
|
|
$rc2 = clone($rc);
|
|
--EXPECTF--
|
|
Fatal error: Uncaught exception 'EngineException' with message 'Trying to clone an uncloneable object of class ReflectionClass' in %s:%d
|
|
Stack trace:
|
|
#0 {main}
|
|
thrown in %s on line %d
|