rustc/tests/ui/macros/issue-118048.rs
2024-06-14 12:43:07 +02:00

11 lines
195 B
Rust

macro_rules! foo {
($ty:ty) => {
fn foo(_: $ty, _: $ty) {}
}
}
foo!(_);
//~^ ERROR the placeholder `_` is not allowed within types on item signatures for functions
fn main() {}