mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
20 lines
368 B
PHP
20 lines
368 B
PHP
--TEST--
|
|
Cloning unconstructed MessageFormatter
|
|
--SKIPIF--
|
|
<?php if( !extension_loaded( 'intl' ) ) print 'skip'; ?>
|
|
--FILE--
|
|
<?php
|
|
|
|
class A extends MessageFormatter {
|
|
function __construct() {}
|
|
}
|
|
|
|
$a = new A;
|
|
try {
|
|
$b = clone $a;
|
|
} catch (Exception $e) {
|
|
var_dump($e->getMessage());
|
|
}
|
|
?>
|
|
--EXPECTF--
|
|
string(%d) "Cannot clone unconstructed MessageFormatter"
|