summaryrefslogtreecommitdiff
path: root/ext/reflection/tests/bug74454.phpt
blob: e311ab3beb31df97a17df4f2bfe06ef5b1416c4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
--TEST--
Bug #74454 (Wrong exception being thrown when using ReflectionMethod)
--FILE--
<?php
spl_autoload_register('load_file');
try {
    $x = new ReflectionMethod('A', 'b');
} catch (\Throwable $e) {
    echo get_class($e), ': ', $e->getMessage(), PHP_EOL;
}

function load_file() {
    require __DIR__ . '/bug74454.inc';
}
?>
--EXPECT--
ParseError: syntax error, unexpected 'if' (T_IF), expecting function (T_FUNCTION) or const (T_CONST)