mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
16 lines
197 B
PHP
16 lines
197 B
PHP
--TEST--
|
|
Internal class variance
|
|
--EXTENSIONS--
|
|
zend_test
|
|
--FILE--
|
|
<?php
|
|
$test = new _ZendTestChildClass;
|
|
|
|
try {
|
|
$test->returnsThrowable();
|
|
} catch (\Error) {
|
|
echo "OK";
|
|
}
|
|
?>
|
|
--EXPECT--
|
|
OK
|