mirror of
https://github.com/php/php-src.git
synced 2024-11-23 18:04:36 +08:00
34 lines
467 B
PHP
34 lines
467 B
PHP
--TEST--
|
|
ZE2 An abstrcat method cannot be called indirectly
|
|
--FILE--
|
|
<?php
|
|
|
|
abstract class test_base
|
|
{
|
|
abstract function func();
|
|
}
|
|
|
|
class test extends test_base
|
|
{
|
|
function func()
|
|
{
|
|
echo __METHOD__ . "()\n";
|
|
}
|
|
}
|
|
|
|
$o = new test;
|
|
|
|
$o->func();
|
|
|
|
call_user_func(array($o, 'test_base::func'));
|
|
|
|
?>
|
|
===DONE===
|
|
--EXPECTF--
|
|
test::func()
|
|
|
|
Fatal error: Uncaught Error: Cannot call abstract method test_base::func() in %s:%d
|
|
Stack trace:
|
|
#0 {main}
|
|
thrown in %s on line %d
|