Skip to content

Instantly share code, notes, and snippets.

@gfldex
Created February 13, 2021 13:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gfldex/0e59383ece1aba3aa710d1913c354b2f to your computer and use it in GitHub Desktop.
Save gfldex/0e59383ece1aba3aa710d1913c354b2f to your computer and use it in GitHub Desktop.
use v6.e.PREVIEW;
my @a = <a b>;
my %b;
%b{||@a} = 42;
@a = <a b c>;
%b{||@a} = 42; # line 7
# OUTPUT: Type Int does not support associative indexing.
# in block <unit> at /home/dex/projects/raku/rakudobug/tmp2.raku line 7
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment