macro_rules! compile_error_stringify {
($($tt:tt)*) => { ... };
}Expand description
Stringifies the input tokens, and errors with compile_error.
Ỳou can use this to show the tokens passed to a macro.
macro_rules! compile_error_stringify {
($($tt:tt)*) => { ... };
}Stringifies the input tokens, and errors with compile_error.
Ỳou can use this to show the tokens passed to a macro.