1--TEST--
2Using an unlinked parent interface
3--FILE--
4<?php
5
6spl_autoload_register(function($class) {
7    class X implements B {}
8});
9
10try {
11    interface B extends A {
12    }
13} catch (Error $e) {
14    echo $e->getMessage(), "\n";
15}
16
17?>
18--EXPECT--
19Interface "B" not found
20