xref: /openbsd-src/gnu/usr.bin/perl/lib/perl5db/t/EnableModule.pm (revision 46035553bfdd96e63c94e32da0210227ec2e3cf1)
1package EnableModule;
2
3use strict;
4use warnings;
5
6sub set_x
7{
8    my $x_ref = shift;
9
10    ${$x_ref} .= "TwoHundred";
11
12    my $x = ${$x_ref};
13
14    my $t = $x;
15    $t .= "Foo";
16}
17
181;
19