php-src/Zend/tests/objects_012.phpt
2018-10-14 19:45:12 +02:00

16 lines
202 B
PHP

--TEST--
implementing a class
--FILE--
<?php
class foo {
}
interface bar extends foo {
}
echo "Done\n";
?>
--EXPECTF--
Fatal error: bar cannot implement foo - it is not an interface in %s on line %d