???<!-- GIF89;a -->
123123123123
.....................................................................................................................................???<!-- GIF89;a -->
123123123123
.....................................................................................................................................--TEST--
Test for PHPC-347: Memory leak decoding empty buffer
--FILE--
<?php

require_once __DIR__ . '/../utils/basic.inc';

try {
    var_dump(toPHP(''));
} catch (MongoDB\Driver\Exception\UnexpectedValueException $e) {
    echo $e->getMessage(), "\n";
}

?>
===DONE===
<?php exit(0); ?>
--EXPECT--
Could not read document from BSON reader
===DONE===
