1
0
mirror of https://github.com/php/php-src.git synced 2026-03-29 11:42:17 +02:00
Files
archived-php-src/ext/unicode/tests/textiterator_next_001.phpt
2008-09-12 17:30:53 +00:00

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)