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


Rakudo r35404:

$ ./perl6 -e 'BEGIN { say "OH HAI" }' # works
OH HAI
$ ./perl6 -e 'BEGIN { 5 }' # works
$ ./perl6 -e 'my $a = BEGIN { 5 }' # worksn't, but should acc. to S04
Statement not terminated properly at line 1, near "{ 5 }"
[...]
$ ./perl6 -e 'my $a = do BEGIN { 5 }' # parses (but see #62186)

Reply via email to