File: rt90869.pl

package info (click to toggle)
libmodule-scandeps-perl 1.23-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 576 kB
  • ctags: 147
  • sloc: perl: 3,007; makefile: 8; ansic: 1
file content (7 lines) | stat: -rw-r--r-- 212 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
# some forms of "use autouse ..."
use autouse TestA => qw(foo bar);
use autouse "TestB", qw(foo bar);

# "use if ..." (note the function call in COND)
sub frobnicate { 1 }
use if frobnicate(), TestC => qw(quux);