From cc521f2921beb88186a11ea3adae2f13e8a1db1e Mon Sep 17 00:00:00 2001 From: Urgau Date: Fri, 3 May 2024 21:13:10 +0200 Subject: [PATCH] Return coherent description for boolean instead of panicking --- compiler/rustc_ast/src/token.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/rustc_ast/src/token.rs b/compiler/rustc_ast/src/token.rs index 6e94653074904..72f89737f9952 100644 --- a/compiler/rustc_ast/src/token.rs +++ b/compiler/rustc_ast/src/token.rs @@ -167,7 +167,7 @@ impl LitKind { pub fn descr(self) -> &'static str { match self { - Bool => panic!("literal token contains `Lit::Bool`"), + Bool => "boolean", Byte => "byte", Char => "char", Integer => "integer",