mirror of
https://github.com/php/php-src.git
synced 2024-11-24 10:24:11 +08:00
11 lines
190 B
PHP
11 lines
190 B
PHP
--TEST--
|
|
Bug #30519 (Interface not existing says Class not found)
|
|
--FILE--
|
|
<?php
|
|
class test implements a {
|
|
}
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Interface 'a' not found in %sbug30519.php on line 2
|
|
|