php-src/tests/classes/interface_method.phpt
2017-01-30 22:50:25 +01:00

13 lines
199 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