summaryrefslogtreecommitdiffstats
path: root/perl_checker.src/test/return_value.t
blob: fd8eafd4ab4eca4050413329280e25a60d5859cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
if ($xxx or $yyy) {}                     value should be dropped
                                         context () is not compatible with context bool

if ($xxx and $yyy) {}                    value should be dropped
                                         context () is not compatible with context bool

$xxx && yyy();                           value is dropped

`xxx`;                                   value is dropped

/(.*)/;                                  value is dropped

map { xxx($_) } @l;                      if you don't use the return value, use "foreach" instead of "map"

$xxx = chomp;                            () context not accepted here
                                         context () is not compatible with context scalar