1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 08:12:21 +01:00
Files
archived-php-src/tests/classes/interface_method.phpt
2020-02-03 22:52:20 +01:00

13 lines
201 B
PHP

--TEST--
ZE2 An interface method must be abstract
--FILE--
<?php
interface if_a {
function err() {}
}
?>
--EXPECTF--
Fatal error: Interface function if_a::err() cannot contain body %s on line %d