We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3301e0e commit a75a841Copy full SHA for a75a841
library/proc_macro/src/bridge/mod.rs
@@ -7,6 +7,10 @@
7
//! Rust ABIs (e.g., stage0/bin/rustc vs stage1/bin/rustc during bootstrap).
8
9
#![deny(unsafe_code)]
10
+// We rely on both sides of the bridge to be built with the same rustc,
11
+// so that the wasm ABI transition will not affect us.
12
+#![cfg_attr(bootstrap, allow(unknown_lints))]
13
+#![allow(wasm_c_abi)]
14
15
use std::hash::Hash;
16
use std::ops::{Bound, Range};
0 commit comments