mirror of
https://github.com/php/php-src.git
synced 2026-04-28 18:53:33 +02:00
e9f783fcdd
For rationale, see #6787 Extensions migrated in part 3: * ftp * gmp * iconv * opcache * shmop
41 lines
651 B
PHP
41 lines
651 B
PHP
--TEST--
|
|
Incorrect elision of return type checks
|
|
--EXTENSIONS--
|
|
opcache
|
|
--FILE--
|
|
<?php
|
|
|
|
function test1($x) : callable {
|
|
if ($x == 1) {
|
|
$c = 'foo';
|
|
} elseif ($x == 2) {
|
|
$c = new stdClass;
|
|
} else {
|
|
$c = [$x => &$x];
|
|
}
|
|
return $c;
|
|
}
|
|
|
|
try {
|
|
test1(1);
|
|
} catch (Error $e) {
|
|
echo $e->getMessage() . "\n";
|
|
}
|
|
|
|
class Foo {}
|
|
function test2() : Foo {
|
|
$obj = new stdClass;
|
|
return $obj;
|
|
}
|
|
|
|
try {
|
|
test2();
|
|
} catch (Error $e) {
|
|
echo $e->getMessage() . "\n";
|
|
}
|
|
|
|
?>
|
|
--EXPECT--
|
|
test1(): Return value must be of type callable, string returned
|
|
test2(): Return value must be of type Foo, stdClass returned
|