php-src/Zend/tests/bug37251.phpt
2015-05-16 16:49:14 -05:00

18 lines
242 B
PHP

--TEST--
Bug #37251 (deadlock when custom error handler is to catch array type hint error)
--FILE--
<?php
class Foo {
function bar(array $foo) {
}
}
try {
$foo = new Foo();
$foo->bar();
} catch (Error $e) {
echo 'OK';
}
--EXPECT--
OK