use our own pragma for hints hash test
[p5sagit/Eval-WithLexicals.git] / t / lib / hint_hash_pragma.pm
1 package hint_hash_pragma;
2 use strictures 1;
3
4 sub import {
5   my ($class, $val) = @_;
6   $^H |= 0x20000;
7   $^H{hint_hash_pragma} = $val;
8 }
9
10 1;