Skip to content

Commit

Permalink
Change unimplemented to unreachable
Browse files Browse the repository at this point in the history
  • Loading branch information
connorslade committed Nov 26, 2023
1 parent d2e8a35 commit 78a8b0b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions common/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,15 @@ pub struct DummySolution;

impl Solution for DummySolution {
fn name(&self) -> &'static str {
unimplemented!()
unreachable!()
}

fn part_a(&self) -> String {
unimplemented!()
unreachable!()
}

fn part_b(&self) -> String {
unimplemented!()
unreachable!()
}

fn is_dummy(&self) -> bool {
Expand Down

0 comments on commit 78a8b0b

Please sign in to comment.