hello, this is a simple code i wrote for test:
-----
my %foo = < a 12 b 34 c 45 >;
my @a = < a >;
my $c = 'c';
say %foo.keys.join('/'); # b/c/a
say @a[0]; # a
say %foo<< @a[0] $c >>.join('/');
-----
on the last line, i expected: '12/45' but had
# stdout: /45
# stderr: Use of uninitialized value
both rakudo and parrot where just upgraded. Did i make it wrong ?
regards
marc
