php-src/Zend/tests/errmsg_001.phpt

17 lines
257 B
Plaintext
Raw Normal View History

2007-02-07 11:10:32 +00:00
--TEST--
errmsg: Non-abstract method must contain body
--FILE--
<?php
abstract class test {
}
class Impl extends Test {
function Foo();
}
echo "Done\n";
?>
--EXPECTF--
Fatal error: Non-abstract method Impl::Foo() must contain body in %s on line %d