mirror of
https://github.com/php/php-src.git
synced 2024-11-25 19:05:31 +08:00
21 lines
345 B
PHP
21 lines
345 B
PHP
--TEST--
|
|
Cloning unconstructed numfmt
|
|
--SKIPIF--
|
|
<?php if( !extension_loaded( 'intl' ) ) print 'skip'; ?>
|
|
--FILE--
|
|
<?php
|
|
|
|
class A extends NumberFormatter {
|
|
function __construct() {}
|
|
}
|
|
|
|
$a = new A;
|
|
try {
|
|
$b = clone $a;
|
|
} catch (Exception $e) {
|
|
var_dump($e->getMessage());
|
|
}
|
|
|
|
--EXPECTF--
|
|
string(42) "Cannot clone unconstructed NumberFormatter"
|