Guest User

Untitled

a guest
Jun 22nd, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Perl 0.24 KB | None | 0 0
  1. #!/usr/bin/perl
  2. use strict;
  3. use warnings;
  4.  
  5. {
  6.     package Test;
  7.     use overload '""' => sub { print @_; }; # dangerous
  8.     sub new{
  9.     return bless {}, __PACKAGE__;
  10.     }
  11. }
  12.  
  13. my $o = Test::new();
  14. print $o; # segmentation fault here
Add Comment
Please, Sign In to add comment