mirror of
https://github.com/php/php-src.git
synced 2024-11-23 18:04:36 +08:00
16 lines
382 B
PHP
16 lines
382 B
PHP
--TEST--
|
|
Bug #44414 (incomplete reporting about abstract methods)
|
|
--FILE--
|
|
<?php
|
|
abstract class A {
|
|
abstract function foo();
|
|
}
|
|
interface B {
|
|
function bar();
|
|
}
|
|
class C extends A implements B {
|
|
}
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Class C contains 2 abstract methods and must therefore be declared abstract or implement the remaining methods (A::foo, B::bar) in %sbug44414.php on line 8
|