This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
[perl #119809] Disallow bless($ref, $tied_ref)
[perl5.git] / t / lib / croak / pp
CommitLineData
8d9dd4b9
FC
1__END__
2# NAME [perl #119809] Attempt to bless into a reference (tied)
3sub TIESCALAR { bless [] }
4sub FETCH { [] }
5tie $t, "";
6bless({}, $t);
7EXPECT
8Attempt to bless into a reference at - line 4.
9########
10# NAME [perl #119809] Attempt to bless into a reference (magical)
11$/ = \1;
12bless [], $/
13EXPECT
14Attempt to bless into a reference at - line 2.