Arquivos
hhvm/hphp/test/quick/not-enough-args.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

21 linhas
346 B
PHP

<?php
function one($a) { echo "one\n"; }
function two($a, $b) { echo "two\n"; }
function three($a, $b, $c) { echo "three\n"; }
function error_handler($errno, $errstr) {
throw new Exception("$errno, $errstr");
}
function main() {
one(1);
two(1);
three(1);
set_error_handler('error_handler');
one(1);
two(1);
three(1);
}
main();