http://qs321.pair.com?node_id=1145366


in reply to Re^4: warnings pragma anomaly
in thread warnings pragma anomaly

True. But before we even start talking about unit tests, it would be nice to have

perl -wc Foo.pm
at least come up with the "Foo.pm syntax ok" message and without raising any warnings.

Given

package Foo; 42;
this would give "syntax ok" but also the "useless use of constant in void context" warning, whereas
package Foo; 1;
would only give the "syntax ok" message.