mirror of
https://github.com/php/php-src.git
synced 2026-03-29 11:42:17 +02:00
13 lines
229 B
PHP
13 lines
229 B
PHP
--TEST--
|
|
TextIterator::next(): Testing with no data
|
|
--FILE--
|
|
<?php
|
|
|
|
$x = new textiterator;
|
|
var_dump($x->next());
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Warning: TextIterator::__construct() expects at least 1 parameter, 0 given in %s on line %d
|
|
int(-1)
|