$iter = iterator->new(5);
test scalar <${iter}>, '5'; # 176
$acc = '';
- $acc .= " $out" while $out = <${iter}>;
+ $acc .= " $out" while $out = <$iter>;
test $acc, ' 4 3 2 1 0'; # 177
}
{
0x00122804, /* bless */
0x00001608, /* backtick */
0x00012808, /* glob */
- 0x00001608, /* readline */
+ 0x0001d608, /* readline */
0x00001608, /* rcatline */
0x00002204, /* regcmaybe */
0x00002204, /* regcreset */
backtick quoted execution (``, qx) ck_open t%
# glob defaults its first arg to $_
glob glob ck_glob t@ S?
-readline <HANDLE> ck_fun t% F
+readline <HANDLE> ck_null t% F?
rcatline append I/O operator ck_null t%
# Bindable operators.
# coredump reported in bug 20001018.008
readline(UNKNOWN);
$. = 1;
- print "ok 10\n" if 1 .. 10;
+ print "ok 10\n" unless 1 .. 10;
}