# New Ticket Created by  "Kyle Hasselbacher" 
# Please include the string:  [perl #68554]
# in the subject line of all future correspondence about this issue. 
# <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=68554 >


These segmentation fault:

perl6 -e 'try { 1/0 }; say $!.WHAT'
perl6 -e 'try { 1/0 }; my $x = $!.WHAT; say $x'

These do not:

perl6 -e 'try { 1/0 }; my $x = ~$!.WHAT; say $x'
perl6 -e 'try { 1/0 }; my $x = $!.WHAT; say ~$x'

Reply via email to