Lines Matching defs:warnings
3 use warnings;24 warnings exception tests capture132 no warnings 'once';220 sub warnings(&) {222 my @warnings;223 local $SIG{__WARN__} = sub { push @warnings => @_ };225 return \@warnings;380 =item $warnings = warnings { ... }382 Capture an arrayref of warnings from the block.