We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 072ccce commit 61e24e6Copy full SHA for 61e24e6
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
+// proc_macros anyway don't work on wasm hosts so while both sides of this bridge can
11
+// be built with different versions of rustc, the wasm ABI changes don't really matter.
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