Subject: [ID
19991128.002] \&{'foo'} not caught by strict refs
Message-ID: <14835.16112.13457.447971@rls.cx>
p4raw-id: //depot/perl@7405
$file = "STDOUT";
print $file "Hi!"; # error; note: no comma after $file
+There is one exception to this rule:
+
+ $bar = \&{'foo'};
+ &$bar;
+
+is allowed so that C<goto &$AUTOLOAD> would not break under stricture.
+
+
=item C<strict vars>
This generates a compile-time error if you access a variable that wasn't