Skip to content

Commit 1db5111

Browse files
committed
Don't check for cfg(rust_analyzer) in proc-macro-test
1 parent bd416e2 commit 1db5111

File tree

1 file changed

+3
-1
lines changed
  • src/tools/rust-analyzer/crates/proc-macro-srv/proc-macro-test/imp/src

1 file changed

+3
-1
lines changed

src/tools/rust-analyzer/crates/proc-macro-srv/proc-macro-test/imp/src/lib.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
//! Exports a few trivial procedural macros for testing.
22
3-
#![cfg(any(feature = "sysroot-abi", rust_analyzer))]
3+
#![cfg(any(feature = "sysroot-abi"))]
4+
// This causes build issues on rust-lang/rust
5+
// #![cfg(any(feature = "sysroot-abi", rust_analyzer))]
46
#![warn(rust_2018_idioms, unused_lifetimes)]
57
#![feature(proc_macro_span, proc_macro_def_site)]
68

0 commit comments

Comments
 (0)