diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 1999-03-23 10:14:54 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 1999-03-23 10:14:54 +0000 |
commit | 3bdc27670282422f0788ccddd9711ae6cfe9bcd1 (patch) | |
tree | 7323b2843c665f5f112db60e5d2d218fc8903131 /t | |
parent | 155776c0c7f8e2be3290142fa6f544bce470abdb (diff) | |
parent | 0a6a0d524e3a6171ed37d842c0e1375270987314 (diff) | |
download | perl-3bdc27670282422f0788ccddd9711ae6cfe9bcd1.tar.gz |
Integrate from mainperl.
p4raw-id: //depot/cfgperl@3128
Diffstat (limited to 't')
-rwxr-xr-x | t/op/gv.t | 12 |
1 files changed, 11 insertions, 1 deletions
@@ -4,7 +4,7 @@ # various typeglob tests # -print "1..29\n"; +print "1..30\n"; # type coersion on assignment $foo = 'foo'; @@ -121,3 +121,13 @@ print {*x{FILEHANDLE}} "ok 23\n"; ++$test; &{$a}; } +# does pp_readline() handle glob-ness correctly? + +{ + my $g = *foo; + $g = <DATA>; + print $g; +} + +__END__ +ok 30 |