TypePHP 编译器
https://swoole.com/aot/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
434 B
20 lines
434 B
--TEST--
|
|
ZE2 iterators cannot implement Traversable alone
|
|
--SKIPIF--
|
|
<?php die('skip'); ?>
|
|
--FILE--
|
|
<?php
|
|
|
|
class test implements Traversable {
|
|
}
|
|
function main() {
|
|
$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
|
|
|