get hints from strictures as late as possible
[p5sagit/Eval-WithLexicals.git] / t / lib / hint_hash_pragma.pm
CommitLineData
9661a07c 1package hint_hash_pragma;
2use strictures 1;
3
4sub import {
5 my ($class, $val) = @_;
6 $^H |= 0x20000;
7 $^H{hint_hash_pragma} = $val;
8}
9
101;