mirror of
https://github.com/php/php-src.git
synced 2026-03-29 03:32:20 +02:00
19 lines
325 B
PHP
19 lines
325 B
PHP
--TEST--
|
|
Bug #60161: Implementing an interface extending Traversable is order dependent
|
|
--FILE--
|
|
<?php
|
|
|
|
interface Foo extends Traversable {
|
|
}
|
|
|
|
class Example implements Foo, IteratorAggregate {
|
|
public function getIterator(): Traversable {
|
|
return new ArrayIterator([]);
|
|
}
|
|
}
|
|
|
|
?>
|
|
===DONE===
|
|
--EXPECT--
|
|
===DONE===
|