You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

34 lines
455 B

--TEST--
ZE2 A static abstract methods
--FILE--
<?php
interface showable
{
static function show();
}
class pass implements showable
{
static function show() {
echo "Call to function show()\n";
}
}
pass::show();
eval('
class fail
{
abstract static function func();
}
');
fail::show();
echo "Done\n"; // shouldn't be displayed
?>
--EXPECTF--
Call to function show()
Fatal error: Static function fail::func() cannot be abstract in %s on line %d