-
-
Save atoomic/2c97fbe70e86896c0ae123db2f1e3493 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package Z; | |
use Devel::Peek (); | |
use overload "+"=>sub {42}; | |
die "fail" unless 42 == bless({}) + 1; | |
Devel::Peek::Dump \%Z::; | |
use Inline C => <<END; | |
void foo(SV* targ) { | |
if (!SvOK(targ)) return; | |
if (SvROK(targ)) targ = SvRV(targ); | |
if (SvMAGICAL(targ) && mg_find(targ, PERL_MAGIC_overload_table)) { | |
warn("sv_unmagic"); | |
sv_unmagic(targ, PERL_MAGIC_overload_table); | |
} | |
} | |
END | |
foo(\%Z::); | |
Devel::Peek::Dump \%Z::; | |
die "fail" unless 42 == bless({}) + 1; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment