20 lines
338 B
PHP
20 lines
338 B
PHP
--TEST--
|
|
IntlCalendar::createInstance: bad arguments
|
|
--EXTENSIONS--
|
|
intl
|
|
--FILE--
|
|
<?php
|
|
|
|
class X extends IntlTimeZone {
|
|
function __construct() {}
|
|
}
|
|
|
|
try {
|
|
intlcal_create_instance(new X, NULL);
|
|
} catch (IntlException $e) {
|
|
echo $e->getMessage();
|
|
}
|
|
?>
|
|
--EXPECT--
|
|
intlcal_create_instance(): passed IntlTimeZone is not properly constructed
|