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