503f75d08b
These names don't make sense now that we run both suites the same way.
16 linhas
185 B
PHP
16 linhas
185 B
PHP
<?php
|
|
|
|
function g() {
|
|
exit;
|
|
$x = exit;
|
|
exit(0);
|
|
$x = exit(0);
|
|
exit + 3;
|
|
$x = exit + 3;
|
|
exit(1) + 3;
|
|
$x = exit(1) + 3;
|
|
f($x, exit($x), $x + 1);
|
|
}
|
|
|
|
call_user_func("g");
|