1--TEST--
2zend_throw_exception with NULL message
3--FILE--
4<?php
5assert_options(ASSERT_EXCEPTION, true);
6try {
7    $assert = 'assert';
8    $assert(false);
9} catch (AssertionError $assertionError) {
10    echo 'Done' . PHP_EOL;
11}
12?>
13--EXPECT--
14Done
15