(F) Only hard references may be blessed. This is how Perl "enforces"
encapsulation of objects. See L<perlobj>.
-=item Can't "break" in a loop topicaizer
+=item Can't "break" in a loop topicalizer
+
(F) You called C<break>, but you're in a C<foreach> block rather than
a C<given> block. You probably meant to use C<next> or C<last>.
=item Can't "break" outside a given block
+
(F) You called C<break>, but you're not inside a C<given> block.
=item Can't call method "%s" in empty package "%s"
(typeglobs), can't be forced to stop being what they are.
=item Can't "continue" outside a when block
+
(F) You called C<continue>, but you're not inside a C<when>
or C<default> block.
instead.
=item Can't use "when" outside a topicalizer
+
(F) You have used a when() block that is neither inside a C<foreach>
loop nor a C<given> block. (Note that this error is issued on exit
from the C<when> block, so you won't get the error if the match fails,