diff options
author | Brian Fraser <fraserbn@gmail.com> | 2012-03-23 17:37:15 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2012-03-25 13:43:59 -0700 |
commit | 3773592b8aa6557e5bedd85cd6e2cbb2d601f383 (patch) | |
tree | 4f5c258120d3f84d837155c5e60972774cbf1706 /t | |
parent | 43b5ab4c23566ca687eac39813feb9e9341f887d (diff) | |
download | perl-3773592b8aa6557e5bedd85cd6e2cbb2d601f383.tar.gz |
toke.c: "CORE::%s is not a keyword" cleanup.
Diffstat (limited to 't')
-rw-r--r-- | t/lib/warnings/toke | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/t/lib/warnings/toke b/t/lib/warnings/toke index 79f287b261..313e5710b5 100644 --- a/t/lib/warnings/toke +++ b/t/lib/warnings/toke @@ -1194,3 +1194,11 @@ no warnings 'ambiguous' ; $a = ${f렏} ; EXPECT Ambiguous use of ${f렏} resolved to $f렏 at - line 6. +######## +# toke.c +use utf8; +use open qw( :utf8 :std ); +use warnings; +CORE::렏; +EXPECT +CORE::렏 is not a keyword at - line 5. |