c5178e82b4
Specifically caused by https://github.com/rust-lang/rust/pull/67786
7 lines
122 B
Rust
7 lines
122 B
Rust
#[macro_export]
|
|
macro_rules! sym {
|
|
($tt:tt) => {
|
|
rustc_span::symbol::Symbol::intern(stringify!($tt))
|
|
};
|
|
}
|