Help for this page

Select Code to Download


  1. or download this
    warn "Got bug title [$e->title]"
    
  2. or download this
    $ perl -Mstrict -wE 'my $e = bless {} => "XXX"; say "[$e->title]"'
    [XXX=HASH(0x7fc0c9805480)->title]
    
  3. or download this
    $ perl -Mstrict -wE 'my $e = bless {} => "XXX"; say "[@{[$e->title]}]"
    +'
    Can't locate object method "title" via package "XXX" at -e line 1.
    
  4. or download this
    warn "Got bug title [@{[$e->title]}]"
    
  5. or download this
    Warning: XML::LibXML compiled against libxml2 20902, but runtime libxm
    +l2 is older 20901