summaryrefslogtreecommitdiff
path: root/Zend/tests/bug65254.phpt
blob: 81f1fd5ccd5fa175b6422fe54642e13fb9fca196 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
--TEST--
Bug #65254 (Exception not catchable when exception thrown in autoload with a namespace)
--FILE--
<?php
spl_autoload_register(function ($class) {
    eval("namespace ns_test; class test {}");

    throw new \Exception('abcd');
});

try
{
    \ns_test\test::go();
}
catch (Exception $e)
{
    echo 'caught';
}
?>
--EXPECT--
caught