rust/clippy_utils/src/sym_helper.rs
2021-02-25 11:25:22 +01:00

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))
};
}