php-src/Zend/tests/bug39127.phpt
Steph Fox 6d8760677d - killed off UEXPECT
- altered EXPECT for parser errors. This may or may not be a Good Thing.
2008-05-26 14:33:44 +00:00

22 lines
405 B
PHP

--TEST--
Bug #39127 (Old-style constructor fallbacks produce strange results)
--FILE--
<?php
class a { function a() { var_dump("a::a() called"); } }
class b extends a {}
$b = new b;
var_dump(is_callable(array($b,"a")));
var_dump(is_callable(array($b,"b")));
var_dump(is_callable(array($b,"__construct")));
echo "Done\n";
?>
--EXPECTF--
%s(13) "a::a() called"
bool(true)
bool(false)
bool(false)
Done