xref: /openbsd-src/gnu/usr.bin/perl/lib/perl5db/t/EnableModule.pm (revision 898184e3e61f9129feb5978fad5a8c6865f00b92)
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