> Have a look at how https://metacpan.org/pod/Sub::StrictDecl does it. > > Once we decide how to do non-default strictures, would it be worth > bringing it into core? > > IMHO it can be directly enabled with "use SOME_VERSION", handy workflow already exists sub foo; sub AUTOLOAD { our $AUTOLOAD; say $AUTOLOAD; } BranoThread Previous | Thread Next