php-src/ext/intl/tests/formatter_clone_bad_obj.phpt
Nikita Popov 7485978339
Migrate SKIPIF -> EXTENSIONS (#7138)
This is an automated migration of most SKIPIF extension_loaded checks.
2021-06-11 11:57:42 +02:00

20 lines
307 B
PHP

--TEST--
Cloning unconstructed numfmt
--EXTENSIONS--
intl
--FILE--
<?php
class A extends NumberFormatter {
function __construct() {}
}
$a = new A;
try {
$b = clone $a;
} catch (Exception $e) {
var_dump($e->getMessage());
}
?>
--EXPECT--
string(42) "Cannot clone unconstructed NumberFormatter"