php-src/Zend/tests/internal_class_variance.phpt
Máté Kocsis fcd18757b2
Add reproducer for possible issue with object return type inheritance (#6961)
Fix early inheritance

Co-authored-by: Joe Watkins <krakjoe@php.net>
2021-05-10 12:52:59 +02:00

17 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