-
Notifications
You must be signed in to change notification settings - Fork 225
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
"The application panicked (crashed)." #969
Comments
Another one: The application panicked (crashed). This is a bug. Consider opening an issue at https://github.com/noir-lang/noir/issues/new?labels=bug&template=bug_report.md Reproduction: AleksanderMisztal/noir-experiments@f2178d5 |
Looking at the first examples real quick, I think the error is from this line: impl DensePolynomial { Which should be impl<N> DensePolynomial<N> { Since DensePolynomial is a generic type. I'll work on verifying this is the actual error and adding a real error message for this if so, instead of crashing the compiler. |
The second issue is due to you having an entry in your |
Closing this as we've added proper error types rather than panicking for these errors. Thanks for reporting these @AleksanderMisztal! |
While running
nargo prove
I gotThe application panicked (crashed).
Message: assertion failed:
(left == right)
left:
1
,right:
0
Location: crates/noirc_frontend/src/hir_def/types.rs:114
This is a bug. Consider opening an issue at https://github.com/noir-lang/noir/issues/new?labels=bug&template=bug_report.md
Reproduction here AleksanderMisztal/noir-experiments@9952b5e
The text was updated successfully, but these errors were encountered: