20 lines
338 B
Plaintext
20 lines
338 B
Plaintext
|
|
--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
|