diff options
Diffstat (limited to 'perl_checker.src/test')
-rw-r--r-- | perl_checker.src/test/various_errors.t | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/perl_checker.src/test/various_errors.t b/perl_checker.src/test/various_errors.t index 0ad2154..535034b 100644 --- a/perl_checker.src/test/various_errors.t +++ b/perl_checker.src/test/various_errors.t @@ -22,6 +22,8 @@ join(@l) first argument of join() must be a scal join(',', 'foo') join('...', $foo) is the same as $foo +system(qq(foo "$xxx")) instead of quoting parameters you should give a list of arguments + my (@l2, $xxx) = @l; @l2 takes all the arguments, $xxx is undef in any case $bad undeclared variable $bad |