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

19 lines
235 B
PHP

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