diff options
author | Ilmari Karonen <iltzu@sci.fi> | 2001-08-19 22:27:33 +0300 |
---|---|---|
committer | Abhijit Menon-Sen <ams@wiw.org> | 2001-09-02 02:54:50 +0000 |
commit | d8a34499b0ed1aed7c7d5741ef20a99cbe385896 (patch) | |
tree | 5d35d053cbc29fc49fb0832f2e75bedd29f4497b /t | |
parent | 94bf5962d98bd99abeac287cb07a0bfb42e8b55f (diff) | |
download | perl-d8a34499b0ed1aed7c7d5741ef20a99cbe385896.tar.gz |
RE: [PATCH] Add a nextstate into empty blocks
Message-Id: <Pine.SOL.3.96.1010819163840.8384B-100000@simpukka>
(op/sub_lval.t updated to take new error message into account.)
p4raw-id: //depot/perl@11822
Diffstat (limited to 't')
-rwxr-xr-x | t/op/sub_lval.t | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/op/sub_lval.t b/t/op/sub_lval.t index 350cb65e1a..4654118fa1 100755 --- a/t/op/sub_lval.t +++ b/t/op/sub_lval.t @@ -251,7 +251,7 @@ eval <<'EOE' or $_ = $@; EOE print "# '$_'.\nnot " - unless /Can\'t return a readonly value from lvalue subroutine/; + unless /Empty array returned from lvalue subroutine in scalar context/; print "ok 31\n"; sub lv10 : lvalue {} |