rust/clippy_lints/src/utils/sym.rs

7 lines
122 B
Rust
Raw Normal View History

2019-05-17 16:53:54 -05:00
#[macro_export]
macro_rules! sym {
($tt:tt) => {
rustc_span::symbol::Symbol::intern(stringify!($tt))
2019-05-13 18:34:08 -05:00
};
}