--TEST-- Incorrect elision of return type checks --SKIPIF-- --FILE-- &$x]; } return $c; } try { test1(1); } catch (Error $e) { echo "Error: {$e->getMessage()}\n"; } class Foo {} function test2() : Foo { $obj = new stdClass; return $obj; } try { test2(); } catch (Error $e) { echo "Error: {$e->getMessage()}\n"; } ?> --EXPECT-- Error: Return value of test1() must be callable, string returned Error: Return value of test2() must be an instance of Foo, instance of stdClass returned