The fact that single quotes can be used to replace :: in identifiers.
Consider:
use strict;
print "$foo"; #-- Won't compile under use strict
print "$foo's fun!"; #-- Compiles just fine, refers to $foo::s
Leading to the following problem:
use strict;
my $name = "John";
print "$name's name is '$name'";
# prints:
# name is 'John'
The recommended way to avoid this is to use braces around your variable name:
print "${name}'s name is '$name'";
# John's name is 'John'
And to also to use warnings, since it'll tell you about the use of the undefined variable $name::s
