2023-11-21 02:42:09 +08:00
|
|
|
macro_rules! foo {
|
|
|
|
|
($ty:ty) => {
|
|
|
|
|
fn foo(_: $ty, _: $ty) {}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
foo!(_);
|
|
|
|
|
//~^ ERROR the placeholder `_` is not allowed within types on item signatures for functions
|
2025-06-06 09:28:25 +00:00
|
|
|
//~| ERROR the placeholder `_` is not allowed within types on item signatures for functions
|
2023-11-21 02:42:09 +08:00
|
|
|
|
|
|
|
|
fn main() {}
|