in reply to Re^2: use of strict
in thread use of strict

No, I didn't test my assumption, but my wonderment about it slowly ceases.

Perl does not interpolate hashes in strings, as it accurately says in perlop:

For constructs that do interpolate, variables beginning with "$" or "@" are interpolated.
use strict; print "%foo";

So, my argumentation above is simply wrong as Perl will not go looking for a hash (reference).