-
Notifications
You must be signed in to change notification settings - Fork 13.3k
Compiler panicked when tried to do something silly #58557
New issue
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
Comments
Please try again on the current nightly. If it still happens, can you post a reproducer? |
I'm on it |
I can't update nightly because of that: #57771
|
You could use the playground to check if it works or not |
Can you try to provide a MCVE for that? Your code is realtivly spare. Try to use the plaground and share the code with us by using the share button in the upper right corner. |
You can get a nightly without all the components by updating to a concrete nightly (e.g. |
After updating to 1.34 (nightly) problem disappeared (it also didn't appear on playground with the newest nightly). Sorry guys for bothering you. |
Hi everyone!
When I was working on solving one of katas from codewars I did something silly. When I was implementing PartialOrd:
instead of writing (yes, now I know that I should just use
.partial_cmp()
instead of.cmp
and then wrapping it intoSome
)by mistake I wrote:
and I received error:
as the error says, I'm opening this issue (even if it's just my silly mistake).
The text was updated successfully, but these errors were encountered: