503f75d08b
These names don't make sense now that we run both suites the same way.
12 linhas
186 B
PHP
12 linhas
186 B
PHP
<?php
|
|
|
|
function exn_throw($exn) {
|
|
throw new Exception('throwing second');
|
|
}
|
|
|
|
function main() {
|
|
set_exception_handler('exn_throw');
|
|
throw new Exception('throwing first');
|
|
}
|
|
main();
|