mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-27 23:20:39 +00:00
7 lines
178 B
Rust
7 lines
178 B
Rust
#[macro_export]
|
|
/// Convenience wrapper around rustc's `Symbol::intern`
|
|
macro_rules! sym {
|
|
($tt:tt) => {
|
|
rustc_span::symbol::Symbol::intern(stringify!($tt))
|
|
};
|
|
}
|