php-src/Zend/tests/errmsg_018.phpt

14 lines
296 B
Plaintext
Raw Normal View History

2007-02-07 11:10:32 +00:00
--TEST--
2018-10-14 16:03:31 +00:00
errmsg: static abstract function
2007-02-07 11:10:32 +00:00
--FILE--
<?php
class test {
2020-02-03 21:52:20 +00:00
static abstract function foo ();
2007-02-07 11:10:32 +00:00
}
echo "Done\n";
?>
2018-09-16 17:16:42 +00:00
--EXPECTF--
2007-02-07 11:10:32 +00:00
Fatal error: Class test contains 1 abstract method and must therefore be declared abstract or implement the remaining methods (test::foo) in %s on line %d