We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
my @foo; @foo[1] = 5; my int @bar = @foo;
dies with an uninformative error.
When default is present, it still dies:
my @foo is default(42); @foo[1] = 5; my int @bar = @foo;
For code to work.
Cannot unbox a type object (VMNull) to an int. in block <unit> at -e line 1
➜ ~ perl6 -e 'my @foo; @foo[1] = 42; my int @bar = @foo' Cannot unbox a type object (VMNull) to an int. in block <unit> at -e line 1
perl6 -v
The text was updated successfully, but these errors were encountered:
See https://colabti.org/irclogger/irclogger_log/perl6?date=2019-05-21#l415
Sorry, something went wrong.
cast @lizmat I have overestimated my free time, so don't mind if you take over this issue, according to https://colabti.org/irclogger/irclogger_log/perl6?date=2019-05-21#l443. Good luck.
ef76601
lizmat
No branches or pull requests
The Problem
dies with an uninformative error.
When default is present, it still dies:
Expected Behavior
For code to work.
Actual Behavior
Steps to Reproduce
Environment
perl6 -v): This is Rakudo version 2019.03 built on MoarVM version 2019.03The text was updated successfully, but these errors were encountered: