Arquivos
hhvm/hphp/test/quick/missing_arg_exception.php
T
ptarjan 503f75d08b Rename test directories
These names don't make sense now that we run both suites the same
way.
2013-04-17 09:06:51 -07:00

13 linhas
197 B
PHP

<?php
set_error_handler('handler');
function handler() { throw new Exception; }
function foo(&$r) {}
function test() {
try {
foo();
} catch (Exception $e) {
}
var_dump('ok');
}
test();