You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello,
your program seems nice but it does not compile. I just run cargo build which seems the standard method to compile in Rust (I am not a specialist of Rust at all) and I get:
error[E0658]: let...else statements are unstable
--> src/lib.rs:243:9
|
243 | / let Some(Step { node, backtracking }) = self.step_stack.pop() else {
244 | | return None;
245 | | };
| |__________^
|
= note: see issue #87335 rust-lang/rust#87335 for more information
For more information about this error, try rustc --explain E0658.
It seems that let...elseis not a standard feature.
Two ways to go:
either the program has to be corrected to comply the standard
or the README.md should explain what to do
Thank you!
The text was updated successfully, but these errors were encountered:
Hello,
your program seems nice but it does not compile. I just run
cargo build
which seems the standard method to compile in Rust (I am not a specialist of Rust at all) and I get:error[E0658]:
let...else
statements are unstable--> src/lib.rs:243:9
|
243 | / let Some(Step { node, backtracking }) = self.step_stack.pop() else {
244 | | return None;
245 | | };
| |__________^
|
= note: see issue #87335 rust-lang/rust#87335 for more information
For more information about this error, try
rustc --explain E0658
.It seems that
let...else
is not a standard feature.Two ways to go:
Thank you!
The text was updated successfully, but these errors were encountered: