File: SubClean.pm

package info (click to toggle)
libnamespace-autoclean-perl 0.31-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 520 kB
  • sloc: perl: 580; makefile: 2
file content (13 lines) | stat: -rw-r--r-- 272 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
use strict;
use warnings;
package SubClean;

use SubExporterModule qw/stuff/;
use Scalar::Util 'refaddr';
use namespace::autoclean;   # clean 'stuff' at end of compilation

sub method { }

use constant CAN => [ qw(method) ];
use constant CANT => [ qw(stuff refaddr) ];
1;