Sign in
rust
/
rust
/
08cd08fbef8c6663b052d8d9e4930d5696cbb8a7
/
.
/
tests
/
ui
/
macros
/
macro-parameter-span.rs
blob: 5609f84e141b6377277c10f80f28cd2791c9c2af [
file
]
macro_rules
!
foo
{
(
$id
:
ident
)
=>
{
$id
}
}
// Testing that the error span points to the parameter 'x' in the callsite,
// not to the macro variable '$id'
fn
main
()
{
foo
!(
x
//~ ERROR cannot find value `x` in this scope
);
}