mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-12-20 18:13:36 +00:00
c5178e82b4
Specifically caused by https://github.com/rust-lang/rust/pull/67786
6 lines
122 B
Rust
6 lines
122 B
Rust
#[macro_export]
|
|
macro_rules! sym {
|
|
($tt:tt) => {
|
|
rustc_span::symbol::Symbol::intern(stringify!($tt))
|
|
};
|
|
}
|