diff --git a/src/solve/naive/mod.rs b/src/solve/naive/mod.rs index 4a01e9a..d70b752 100644 --- a/src/solve/naive/mod.rs +++ b/src/solve/naive/mod.rs @@ -54,7 +54,9 @@ impl<'wl, WL: WordList> Solver<'wl, WL> for NaiveSolver<'wl, WL> { }) .map(|v| v.to_owned()) .collect(); - matches[0].0.to_owned() + matches[0].0.to_owned() // FIXME: panicks in interactive solve, when I insert bullshit and + // pretend that there is a solution #5 It also crashes in + // non-interactive mode } }