mirror of
https://github.com/php/php-src.git
synced 2024-11-27 20:03:40 +08:00
20 lines
474 B
PHP
20 lines
474 B
PHP
--TEST--
|
|
ZE2 iterators cannot implement Traversable alone
|
|
--SKIPIF--
|
|
<?php if (version_compare(zend_version(), '2.0.0-dev', '<')) die('skip ZendEngine 2 needed'); ?>
|
|
--FILE--
|
|
<?php
|
|
|
|
class test implements Traversable {
|
|
}
|
|
|
|
$obj = new test;
|
|
|
|
foreach($obj as $v);
|
|
|
|
print "Done\n";
|
|
/* the error doesn't show the filename but 'Unknown' */
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Class test must implement interface Traversable as part of either Iterator or IteratorAggregate in %s on line %d
|