diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 1998-12-21 14:07:41 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 1998-12-21 14:07:41 +0000 |
commit | df5b6949eb415c41b21186b830a00443d3a66c2d (patch) | |
tree | af8e089c4105298a6c327ebe5e942a5ce6e3d5c1 /t/pragma/warn/op | |
parent | 4c97a74db1883ec0b39547a5663046898c89a79b (diff) | |
download | perl-df5b6949eb415c41b21186b830a00443d3a66c2d.tar.gz |
Update on change #2493.
p4raw-link: @2493 on //depot/cfgperl: 752ebe844985bd7c7f424795c73df4c551117eba
p4raw-id: //depot/cfgperl@2496
Diffstat (limited to 't/pragma/warn/op')
-rw-r--r-- | t/pragma/warn/op | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/t/pragma/warn/op b/t/pragma/warn/op index 195928c40d..f60a9fa004 100644 --- a/t/pragma/warn/op +++ b/t/pragma/warn/op @@ -52,10 +52,10 @@ %$c =~ tr/a/b/ ; - Parens missing around "my" list at -e line 1. + Parentheses missing around "my" list at -e line 1. my $a, $b = (1,2); - Parens missing around "local" list at -e line 1. + Parentheses missing around "local" list at -e line 1. local $a, $b = (1,2); Probable precedence problem on logical or at -e line 1. @@ -436,13 +436,13 @@ Execution of - aborted due to compilation errors. use warning 'syntax' ; my $a, $b = (1,2); EXPECT -Parens missing around "my" list at - line 3. +Parentheses missing around "my" list at - line 3. ######## # op.c use warning 'syntax' ; local $a, $b = (1,2); EXPECT -Parens missing around "local" list at - line 3. +Parentheses missing around "local" list at - line 3. ######## # op.c use warning 'syntax' ; |