1: my %hash = (a => 'b'); # Watch %hash 2: 3: my $ref = \%hash; # Breakpoint! 4: ### ... some code ... 5: my $otherref = \%hash; # Breakpoint! 6: my $yetanotherref = $otherref; # Breakpoint!