Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
macros
/
issue-118048.rs
blob: 15a834fa2df487a4bccfd1c1fd27431bda97e73e [
file
] [
log
] [
blame
] [
edit
]
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
()
{}