mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
14 lines
244 B
PHP
14 lines
244 B
PHP
--TEST--
|
|
zend_throw_exception with NULL message
|
|
--FILE--
|
|
<?php
|
|
assert_options(ASSERT_EXCEPTION, true);
|
|
try {
|
|
$assert = 'assert';
|
|
$assert(false);
|
|
} catch (AssertionError $assertionError) {
|
|
echo 'Done' . PHP_EOL;
|
|
}
|
|
?>
|
|
--EXPECT--
|
|
Done
|