Subject: | eval { use BSD::Resource ... is a use at compile time |
I found this code that breaks so many cpan tester runs:
eval { use BSD::Resource ...
eval block is compiling the content of the block at compile time and use
is executing at compile time. So this never does what you intend, it
fails uncaught by the eval at compile time.
HTH, Regards,