mirror of
https://github.com/rust-lang/rust-analyzer
synced 2025-01-09 11:48:48 +00:00
a7224c998d
This has been warn-by-default for two years now and has already been added to the future-incompat lints in 1.68.
6 lines
225 B
Rust
6 lines
225 B
Rust
//! Exports a few trivial procedural macros for testing.
|
|
|
|
#![warn(rust_2018_idioms, unused_lifetimes)]
|
|
|
|
pub static PROC_MACRO_TEST_LOCATION: &str =
|
|
include_str!(concat!(env!("OUT_DIR"), "/proc_macro_test_location.txt"));
|