Skip to content

Commit

Permalink
RakuAST: Fix my Int:D $ .= 1
Browse files Browse the repository at this point in the history
  • Loading branch information
niner committed Mar 31, 2024
1 parent c467e04 commit d31e99e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Raku/ast/variable-declaration.rakumod
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ class RakuAST::ContainerCreator {

method IMPL-CONTAINER(Mu $of, Mu $cont-desc) {
# Form the container.
my $default := self.type ?? $of !! Any;
my $default := self.type ?? RakuAST::Type.IMPL-MAYBE-NOMINALIZE($of) !! Any;
my str $sigil := self.sigil;
my $container-base-type;
my $container-type;
Expand Down

0 comments on commit d31e99e

Please sign in to comment.