From ad356e8b67b2d800d95385e56d03fb2e81217ea1 Mon Sep 17 00:00:00 2001 From: bendn Date: Sat, 8 Mar 2025 01:16:02 +0700 Subject: [PATCH] fix library tests --- library/alloc/tests/fmt.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/alloc/tests/fmt.rs b/library/alloc/tests/fmt.rs index c13074c53b73d..91d2a2a152753 100644 --- a/library/alloc/tests/fmt.rs +++ b/library/alloc/tests/fmt.rs @@ -1,6 +1,6 @@ #![deny(warnings)] // FIXME(static_mut_refs): Do not allow `static_mut_refs` lint -#![allow(static_mut_refs)] +#![allow(static_mut_refs, redundant_transmutation)] use std::cell::RefCell; use std::fmt::{self, Write};