ru_php/Zend/tests/enum/no-clone-internal.phpt

17 lines
272 B
PHP

--TEST--
Enum disallows cloning (internal enum)
--EXTENSIONS--
zend_test
--FILE--
<?php
try {
var_dump(clone ZendTestIntEnum::Foo);
} catch (Error $e) {
echo $e->getMessage() . "\n";
}
?>
--EXPECT--
Trying to clone an uncloneable object of class ZendTestIntEnum