From ca7a9012697d5820892d732c14ac7c01cbd75f62 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Fri, 15 Jul 2016 21:07:03 +0200 Subject: [PATCH] Use the right macro here --- imag-todo/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/imag-todo/src/main.rs b/imag-todo/src/main.rs index 4bad0a26..9771442e 100644 --- a/imag-todo/src/main.rs +++ b/imag-todo/src/main.rs @@ -38,7 +38,7 @@ fn main() { match rt.cli().subcommand_name() { Some("tw-hook") => tw_hook(&rt), Some("list") => list(&rt), - _ => unimplemented!(), + _ => unreachable!(), } // end match scmd } // end main