diff --git a/yjit/src/lib.rs b/yjit/src/lib.rs index 3935d49762..f3247fbf1a 100644 --- a/yjit/src/lib.rs +++ b/yjit/src/lib.rs @@ -12,7 +12,9 @@ // check for re-entrance in one place. // // We're too close to release to do that, though, so disable the lint for now. +#![allow(unknown_lints)] #![allow(static_mut_refs)] +#![warn(unknown_lints)] pub mod asm; mod backend;