rust-clippy/clippy_utils/src/sym_helper.rs

8 lines
178 B
Rust
Raw Normal View History

2019-05-17 21:53:54 +00:00
#[macro_export]
/// Convenience wrapper around rustc's `Symbol::intern`
2019-05-17 21:53:54 +00:00
macro_rules! sym {
($tt:tt) => {
rustc_span::symbol::Symbol::intern(stringify!($tt))
2019-05-13 23:34:08 +00:00
};
}