mirror of
https://github.com/php/php-src.git
synced 2024-11-23 18:04:36 +08:00
16 lines
202 B
PHP
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
|