mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
20 lines
307 B
PHP
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"
|