File: CCstashCallee2.pm

package info (click to toggle)
libdevel-pragma-perl 1.1.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 364 kB
  • sloc: perl: 449; makefile: 3
file content (16 lines) | stat: -rw-r--r-- 167 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package CCstashCallee2;

use strict;
use warnings;

use Devel::Pragma qw(ccstash);

our $CCSTASH;

BEGIN { $CCSTASH = ccstash }

sub test {
    return $CCSTASH;
}

1;