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

saintmike has asked for the wisdom of the Perl Monks concerning the following question:

From the main package, I would like to overwrite a module's
use constant VALUE => 1;
by a different value for nefarious purposes. I tried
package A; use strict; use constant VALUE => 1; sub func { print "Constant is ", VALUE, "\n"; } package main; use strict; no strict 'refs'; *{"A::VALUE"} = sub () { 2 }; A->func();
but this still prints "1" and not "2". I must be missing something obvious, or is the prototype playing games with me?