17 lines
255 B
Plaintext
17 lines
255 B
Plaintext
|
|
--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
|