mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-28 22:13:39 +00:00
6 lines
125 B
Rust
6 lines
125 B
Rust
|
//! This teaches cargo about our cfg(rust_analyzer)
|
||
|
|
||
|
fn main() {
|
||
|
println!("cargo:rustc-check-cfg=cfg(rust_analyzer)");
|
||
|
}
|