1
0
mirror of https://github.com/php/php-src.git synced 2026-03-25 16:52:18 +01:00
Files
archived-php-src/tests/classes/iterators_005.phpt
2004-09-29 09:39:43 +00:00

20 lines
474 B
PHP
Executable File

--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