A path can contain parentheses and exclamation marks.
macro_rules! path {
($p:path) => {};
}
fn main() {
path!(Fn(A) -> !);
}
A path can contain parentheses and exclamation marks.
macro_rules! path {
($p:path) => {};
}
fn main() {
path!(Fn(A) -> !);
}