# New Ticket Created by Will Coleda
# Please include the string: [perl #107244]
# in the subject line of all future correspondence about this issue.
# <URL: https://rt.perl.org:443/rt3/Ticket/Display.html?id=107244 >
$ more foo
sub MAIN($a, :$b) {
say "$a, $b";
}
$ perl6 foo -b=3 4
use of uninitialized value of type Any in string context
use of uninitialized value of type Any in string context
4, 3
$ perl6 --version
This is perl6 version 2011.12-1-geb6c4be built on parrot 3.11.0
revision RELEASE_3_11_0
--
Will "Coke" Coleda